diff --git a/.README.md.swp b/.README.md.swp deleted file mode 100644 index 2771ee2..0000000 Binary files a/.README.md.swp and /dev/null differ diff --git a/.composer.json.swp b/.composer.json.swp deleted file mode 100644 index 5b456e6..0000000 Binary files a/.composer.json.swp and /dev/null differ diff --git a/.gitignore b/.gitignore index 0ae59f0..dbb2610 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.sw[po] /node_modules /public/hot /public/storage diff --git a/.gitignore.swp b/.gitignore.swp deleted file mode 100644 index 6bfe99f..0000000 Binary files a/.gitignore.swp and /dev/null differ diff --git a/README.md b/README.md index e1dcd2e..4da0caf 100644 --- a/README.md +++ b/README.md @@ -1,62 +1,8 @@ -

-

-Build Status -Total Downloads -Latest Stable Version -License -

- -## 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. - -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 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 [Patreon page](https://patreon.com/taylorotwell). - -### Premium Partners - -- **[Vehikl](https://vehikl.com/)** -- **[Tighten Co.](https://tighten.co)** -- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** -- **[64 Robots](https://64robots.com)** -- **[Cubet Techno Labs](https://cubettech.com)** -- **[Cyber-Duck](https://cyber-duck.co.uk)** -- **[Many](https://www.many.co.uk)** -- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** -- **[DevSquad](https://devsquad.com)** -- **[Curotec](https://www.curotec.com/)** -- **[OP.GG](https://op.gg)** - -## 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. +## Deployment +- Make sure directories like storage have appropriate file permissions ## License +This is a private closed source project. -The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). +## TODO diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..7f6a843 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,45 @@ +@extends('master') + +@section('title', 'Home') + +@section('head-metas') + @parent + +@endsection + +@section('content') + @parent +
+
+

The Web's #1 Content Promoter.

+
+
+
+

Elit

+

Dolor molestiae quos architecto nesciunt enim! Sit corrupti voluptas + aliquam aperiam maiores iure aliquam aut Voluptatem quas deserunt iure non sunt + Esse laborum corporis explicabo eos numquam. Fugit ad ex? +

+
+
+

Dolor laborum.

+
Amet vero est sunt suscipit
+
Consectetur consequatur aliquam.
+
Sit
+
Dolor adipisci quos distinctio?
+
+
+

FAQ

+
+
+
+
+
+
+
+@endsection + +@section('scripts') + @parent + +@endsection diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php new file mode 100644 index 0000000..bc8acdf --- /dev/null +++ b/resources/views/master.blade.php @@ -0,0 +1,50 @@ + + +{{-- This section may need to be overwritten in descendants --}} +@section('head-metas') + + + + +@show + Trendplays - @yield('title') + + + + +
+ +
+ @yield('content') + + @yield('scripts') + diff --git a/resources/views/panel.blade.php b/resources/views/panel.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/terms.blade.php b/resources/views/terms.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/routes/web.php b/routes/web.php index b130397..fd12519 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', function () { - return view('welcome'); + return view('home'); });