diff --git a/README.md b/README.md
new file mode 100755
index 0000000..0165a77
--- /dev/null
+++ b/README.md
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+## About Laravel
+
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
+
+- [Simple, fast routing engine](https://laravel.com/docs/routing).
+- [Powerful dependency injection container](https://laravel.com/docs/container).
+- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
+- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
+- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
+- [Robust background job processing](https://laravel.com/docs/queues).
+- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
+
+Laravel is accessible, powerful, and provides tools required for large, robust applications.
+
+## Learning Laravel
+
+Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application.
+
+If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
+
+## Laravel Sponsors
+
+We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
+
+### Premium Partners
+
+- **[Vehikl](https://vehikl.com)**
+- **[Tighten Co.](https://tighten.co)**
+- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
+- **[64 Robots](https://64robots.com)**
+- **[Curotec](https://www.curotec.com/services/technologies/laravel)**
+- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
+- **[Redberry](https://redberry.international/laravel-development)**
+- **[Active Logic](https://activelogic.com)**
+
+## Contributing
+
+Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
+
+## Code of Conduct
+
+In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
+
+## Security Vulnerabilities
+
+If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
+
+## License
+
+The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
diff --git a/app/Http/Controllers/BandController.php b/app/Http/Controllers/BandController.php
new file mode 100644
index 0000000..d2aeea3
--- /dev/null
+++ b/app/Http/Controllers/BandController.php
@@ -0,0 +1,12 @@
+addCssFile('band.css');
+ return $this->render('band');
+ }
+}
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
new file mode 100755
index 0000000..7bedbe5
--- /dev/null
+++ b/app/Http/Controllers/Controller.php
@@ -0,0 +1,42 @@
+js[] = $js;
+ }
+
+ protected function addCssFile(string $css): void
+ {
+ $this->css[] = $css;
+ }
+
+ protected function render(string $view, array $data = [])
+ {
+ $menu = config("menu");
+ $css_files = $this->css;
+ $js_files = $this->js;
+
+ return view($view,
+ compact('menu'),
+ compact(['css_files', 'js_files']),
+ compact('data')
+ );
+ }
+}
diff --git a/app/Http/Controllers/GigsController.php b/app/Http/Controllers/GigsController.php
new file mode 100644
index 0000000..9610702
--- /dev/null
+++ b/app/Http/Controllers/GigsController.php
@@ -0,0 +1,23 @@
+loader->getEvents();
+ $this->addCssFile('gigs.css');
+
+ return $this->render('gigs')
+ ->with(compact('events'));
+ }
+}
diff --git a/app/Http/Controllers/MainController.php b/app/Http/Controllers/MainController.php
new file mode 100644
index 0000000..e8a06af
--- /dev/null
+++ b/app/Http/Controllers/MainController.php
@@ -0,0 +1,11 @@
+render('home');
+ }
+}
diff --git a/app/Http/Controllers/PlaylistController.php b/app/Http/Controllers/PlaylistController.php
new file mode 100644
index 0000000..fe50041
--- /dev/null
+++ b/app/Http/Controllers/PlaylistController.php
@@ -0,0 +1,27 @@
+css;
+ $js_files = $this->js;
+ $playlist = $this->loader->getPlaylist();
+
+ return view('playlist',
+ compact('menu'),
+ compact(['css_files', 'js_files','playlist']),
+ );
+ }
+}
diff --git a/app/Http/Controllers/RiderController.php b/app/Http/Controllers/RiderController.php
new file mode 100644
index 0000000..6fdc341
--- /dev/null
+++ b/app/Http/Controllers/RiderController.php
@@ -0,0 +1,11 @@
+render('rider');
+ }
+}
diff --git a/app/Models/Loaders/GigsLoader.php b/app/Models/Loaders/GigsLoader.php
new file mode 100644
index 0000000..41a6100
--- /dev/null
+++ b/app/Models/Loaders/GigsLoader.php
@@ -0,0 +1,32 @@
+join("Place", function ($join){
+ $join->on("Place.Id", "=", "Event.PlaceId")
+ ->where("Place.DeleteDate", NULL);
+ });
+ $data = $data->get();
+
+ return $data ? $data->toArray() : [];
+ }
+}
diff --git a/app/Models/Loaders/PlaylistLoader.php b/app/Models/Loaders/PlaylistLoader.php
new file mode 100644
index 0000000..4c27012
--- /dev/null
+++ b/app/Models/Loaders/PlaylistLoader.php
@@ -0,0 +1,21 @@
+join('Performer', function ($join) {
+ $join->on('Performer.Id', "=", "Track.Performer")
+ ->where('Performer.DeleteDate', NULL);
+ })->orderBy('Performer')->get();
+
+ return $data ? $data->toArray() : [];
+ }
+}
diff --git a/app/Models/ORM/Event.php b/app/Models/ORM/Event.php
new file mode 100644
index 0000000..86434f4
--- /dev/null
+++ b/app/Models/ORM/Event.php
@@ -0,0 +1,19 @@
+ */
+ use HasFactory, Notifiable;
+
+ /**
+ * The attributes that are mass assignable.
+ *
+ * @var list
+ */
+ protected $fillable = [
+ 'name',
+ 'email',
+ 'password',
+ ];
+
+ /**
+ * The attributes that should be hidden for serialization.
+ *
+ * @var list
+ */
+ protected $hidden = [
+ 'password',
+ 'remember_token',
+ ];
+
+ /**
+ * Get the attributes that should be cast.
+ *
+ * @return array
+ */
+ protected function casts(): array
+ {
+ return [
+ 'email_verified_at' => 'datetime',
+ 'password' => 'hashed',
+ ];
+ }
+}
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
new file mode 100755
index 0000000..452e6b6
--- /dev/null
+++ b/app/Providers/AppServiceProvider.php
@@ -0,0 +1,24 @@
+common_class = $common_class ?? $this->common_class;
+ $this->dropdown_class = $dropdown_class ?? $this->dropdown_class;
+ $this->menu = config("menu");
+ }
+
+ public function getRawMenu(): array
+ {
+ return $this->menu;
+ }
+
+ public function getMenu(): string
+ {
+ $uls = $this->createMenu($this->menu);
+ return "
+@foreach($js_files as $js)
+
+@endforeach
+
+
diff --git a/resources/views/playlist.blade.php b/resources/views/playlist.blade.php
new file mode 100644
index 0000000..17745ac
--- /dev/null
+++ b/resources/views/playlist.blade.php
@@ -0,0 +1,60 @@
+@extends('main')
+@section('title', 'Репертуар')
+@section('content')
+
+
+
+
+
+
+
+
+
+
+
+
О группе:
+
+
Московская рок-группа Ledstar – ваш проводник в мир настоящей, живой, качественной рок-музыки. Основной репертуар группы состоит из мировых рок-хитов 60-х – начала 90-х гг.: все самое вкусное, от Led Zeppelin до Metallica... Кроме того, в репертуаре есть и авторский материал.
+
От многих других групп, Ledstar отличает высокое качество исполнения и звучания, не смотря на минимальный инструментальный состав. Ну, и конечно, вокал, который способен на все, разве что, кроме оперы: от Дио до Хетфилда!
+
Живой звук! Живая энергия! Рок-музыка в лучшем ее проявлении!
Подиум или пространство для барабанов должно быть застелено ковром, ковролином или любым другим материалом, препятствующим скольжению инструментов и стоек по полу.