这是我的 index.blade.php 代码我用 `app()->getLocale() 尝试了一切,但不幸的是没有积极的结果。我该如何解决?
<form action="{{ route('patients.destroy', $patient->id) }}" method="post" style="float: right;">
@csrf
@method('DELETE')
<button type="submit" style="border: 0; background: none; cursor: pointer;"><i class="fa fa-trash"></i></button>
</form>
Route::redirect('/', '/en');
Route::group(['prefix' => '{language}'], function() {
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
Route::resource('patients', 'PatientController');
Route::get('/search', 'PatientController@search');
});