Русское сообщество разработки на PHP-фреймворке Laravel.
Ты не вошёл. Вход тут.
Помогите справиться с этой ошибкой. Никак не могу ее побороть.
Вот мои роуты:
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/
use App\Org;
use Illuminate\Http\Request;
/**
* Вывести список всех задач
*/
Route::get('/', function () {
$orgs = Org::orderBy('created_at', 'asc')->get();
return view('orgs', [
'orgs' => $orgs
]);
});
/**
* Добавить новую задачу
*/
Route::post('/Org', function (Request $request) {
$validator = Validator::make($request->all(), [
'orgs_name' => 'required|max:255',
'orgs_adress' => 'required|max:255',
]);
if ($validator->fails()) {
return redirect('/')
->withInput()
->withErrors($validator);
}
$org = new App\Org;
$org->orgs_name = $request->orgs_name;
$org->orgs_adress = $request->orgs_adress;
//$org->position = $request->position;
$org->save();
return redirect('/');
});
/**
* Удалить существующую задачу
*/
Route::delete('/org/{id}', function ($id) {
Org::findOrFail($id)->delete();
return redirect('/');
});
Auth::routes();
Route::get('/home', 'HomeController@index');