for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Welcome\UI\API\Controllers;
use App\Ship\Parents\Controllers\ApiController;
use Illuminate\Support\Facades\Config;
/**
* Class Controller.
*
* @author Mahmoud Zalt <[email protected]>
*/
class Controller extends ApiController
{
* @return \Illuminate\Http\JsonResponse
public function sayWelcome()
return response()->json(['Welcome to ' . Config::get('api.name') . '.']);
}