run middleware only on certain resource routes laravel 7 code example

Example 1: Route::resource('/posts','PostController');

Route::resources([
    'photos' => 'PhotoController',
    'posts' => 'PostController',
]);

Example 2: 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');
    }
}