larevel получить внутреннюю ошибку сервера, как ее решить?
это мой веб. php код
Route::get('/', function () {
return view('index');
});
Route::get('/fleet', 'FleetController@index')->name('fleet');
Route::get('/offers', 'OffersController@index')->name('Offers');
при переходе по ссылке на страницу парка я получаю внутреннюю ошибку сервера .
моя папка
resources
|-view
|--index.blade.php
|--fleet.blade.php
|--offers.blade.php
это index.blade. php код
<li class="nav-item"><a class="nav-link" href="{{ route('fleet') }}">Fleet</a></li>
<li class="nav-item"><a class="nav-link" href="{{ route('offers') }}">Offers</a></li>
как решить эту проблему?
мой apache настройка:
DocumentRoot "D:\xampp\htdocs\laravel\wine\public"
мой код FleetController
public function index()
{
return view('index');
}
Модель парка
class Fleet extends Model
{
//
}
по-прежнему возникает ошибка
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at postmaster@localhost to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 Server at localhost Port 80