Ejemplo: ¿código de actualización de laravel 7 a 8?
Route::get('/profile/{location}', function ($location = null) {
//
})->name('profile');
// Laravel 5.8: http://example.com/profile/active
echo route('profile', ['status' => 'active' => 'inActive']);
// Laravel 6.0: http://example.com/profile?status=active
echo route('profile', ['status' => 'active']);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)