how to make object in controller class laravel code example
Example 1: laravel controller middleware
class UserController extends Controller
{
/**
* Instantiate a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
$this->middleware('log')->only('index');
$this->middleware('subscribed')->except('store');
}
}
Example 2: laravel create resource controller
php artisan make:controller PhotoController --resource --model=Photo