Answers for "why command route list in laravel 8"

PHP
0

execute artisan command from route

Route::get('clear_cache', function () {

    Artisan::call('cache:clear');

    dd("Cache is cleared");

});
Posted by: Guest on May-11-2021
4

laravel 8 route

Route::get(
    '/user/profile',
    [UserProfileController::class, 'show']
)->name('profile');
Posted by: Guest on March-02-2021

Browse Popular Code Answers by Language