for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\User\UI\WEB\Controllers;
use App\Ship\Parents\Controllers\WebController;
/**
* Class Controller
*
* @author Mahmoud Zalt <[email protected]>
*/
class Controller extends WebController
{
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
public function sayWelcome()
return view('user-welcome');
}