mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
excel upload old bookings
This commit is contained in:
+6
-1
@@ -13,8 +13,13 @@
|
||||
Route::get('/', 'WelcomeController@index');
|
||||
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');
|
||||
Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset');
|
||||
Route::group(['middleware' => ['role:admin']], function() {
|
||||
Route::get('bulkBookings', function () {
|
||||
return view('booking.bulkBooking');
|
||||
})->name('booking.bulk.form');
|
||||
Route::post('/bulkBookings', 'BulkBookingController@index')->name('booking.bulk');
|
||||
});
|
||||
Route::get('{path}', 'WelcomeController@index')->where('path', '(.*)');
|
||||
|
||||
Auth::routes();
|
||||
|
||||
//Route::get('/home', 'WelcomeController@index')->name('home');
|
||||
|
||||
Reference in New Issue
Block a user