Files
cleaning-company/routes/web.php
Владимир f5c68bf0c7 commit 08.01
2026-01-08 12:38:09 +00:00

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