Added contact page

This commit is contained in:
amikhaylov
2026-05-15 17:20:04 +03:00
parent 9e6b6c4dcb
commit 443a745029
13 changed files with 291 additions and 7 deletions
+4 -2
View File
@@ -7,6 +7,7 @@ use App\Http\Controllers\PlaylistController;
use App\Http\Controllers\BandController;
use App\Http\Controllers\GigsController;
use App\Http\Controllers\NewsController;
use App\Http\Controllers\ContactsController;
Route::get('/', [MainController::class, 'index']);
Route::get('/rider', [RiderController::class, 'index']);
@@ -14,8 +15,9 @@ Route::get('/playlist', [PlaylistController::class, 'index']);
Route::get('/band', [BandController::class, 'index']);
Route::get('/gigs', [GigsController::class, 'index']);
Route::get('/news', [NewsController::class, 'index']);
Route::get('/contacts', [ContactsController::class, 'index']);
/**
* Доделать остальные маршруты
* и сотальные страницы требуют ...
* Доделать остальные маршруты..
*/