Simple route with arrow function

You can use php arrow function in routing, without having to use anonymous function.

To do this, you can use fn() =>, it looks easier.

// Instead of
Route::get('/example', function () {
return User::all();
});
 
// You can
Route::get('/example', fn () => User::all());

Recent New Courses