39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
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'));
|
|
}); |