Skip to main content

Black Friday 2025! Only until December 1st: coupon FRIDAY25 for 40% off Yearly/Lifetime membership!

Read more here
Tutorial Free

Invokable Controllers with One Specific Action

January 03, 2019
1 min read

Sometimes you need to create a controller which doesn't cover all seven resourceful methods, like index(), create(), store() etc. You just need controller which does one thing and you're struggling how to name that method. No more struggle, there's __invoke() method.

Since Laravel 5.6.28, you can create a Controller with only one method __invoke():

namespace App\Http\Controllers;

use App\User;
use App\Http\Controllers\Controller;

class ProfileController extends Controller
{
    /**
     * Show the profile for the given user.
     *
     * @param  int  $id
     * @return Response
     */
    public function __invoke($id)
    {
        return view('user.profile', ['user' => User::findOrFail($id)]);
    }
}

As you can see, you can also pass a parameter to id.

To call that method+Controller, in your routes/web.php you should have this:

Route::get('user/{id}', 'ProfileController');

You can also generate this kind of Controller, with this Artisan command:

php artisan make:controller ProfileController --invokable

Enjoyed This Tutorial?

Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.

Comments & Discussion

A
Alin ✓ Link copied!

Exceptionally succint and useful!