Files
Benjamin Sigonneau cf6d0ab467 List all paddocks, create new paddock.
All paddocks new paddocks are closed.
2020-04-17 09:08:22 +02:00

22 lines
549 B
PHP

<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return redirect('paddocks');
});
Route::resource('paddocks', 'PaddockController');