I want to apply middleware on create route of resource controller but confused how to set middleware. Normally we can add middleware like this
Route::get('api/users/{user}', function (App\Models\User $user) {
return $user->email;
})->middleware('name');
but when we have a resource controller so how could I apply middleware on single route of resource controller.
Route::resource('front-pages','Admin\FrontPagesController');
create a
__construct()
functionin FrontPagesController.php
ref link https://laravel.com/docs/8.x/controllers#controller-middleware
all the possible functions