commit 08.01

This commit is contained in:
Владимир
2026-01-08 12:38:09 +00:00
parent bbe639b604
commit f5c68bf0c7
13 changed files with 4444 additions and 542 deletions

View File

@@ -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'));
});