commit 08.01
This commit is contained in:
@@ -3,5 +3,37 @@
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
return file_get_contents(public_path('index.html'));
|
||||
});
|
||||
|
||||
Route::get('/index.html', function () {
|
||||
return file_get_contents(public_path('index.html'));
|
||||
});
|
||||
|
||||
Route::get('/services.html', function () {
|
||||
return file_get_contents(public_path('services.html'));
|
||||
});
|
||||
|
||||
Route::get('/my-bookings.html', function () {
|
||||
return file_get_contents(public_path('my-bookings.html'));
|
||||
});
|
||||
|
||||
Route::get('/admin-bookings.html', function () {
|
||||
return file_get_contents(public_path('admin-bookings.html'));
|
||||
});
|
||||
|
||||
Route::get('/admin-services.html', function () {
|
||||
return file_get_contents(public_path('admin-services.html'));
|
||||
});
|
||||
|
||||
Route::get('/admin-schedule.html', function () {
|
||||
return file_get_contents(public_path('admin-schedule.html'));
|
||||
});
|
||||
|
||||
Route::get('/booking-confirm.html', function () {
|
||||
return file_get_contents(public_path('booking-confirm.html'));
|
||||
});
|
||||
|
||||
Route::get('/register-login.html', function () {
|
||||
return file_get_contents(public_path('register-login.html'));
|
||||
});
|
||||
Reference in New Issue
Block a user