🎨 Empêche 2 posts par jour et améliore l'affichage

This commit is contained in:
Shikiryu
2019-09-25 15:20:22 +02:00
parent 31dc160ada
commit e6527a72af
6 changed files with 82 additions and 105 deletions

View File

@@ -11,11 +11,8 @@
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
Route::get('/', 'WelcomeController@index')->name('home');
Route::get('/home', 'HomeController@index')->name('dashboard');
Route::post('store', 'HomeController@store')->name('store');