-
16 | @foreach ($errors->all() as $error)
17 |
- {{ $error }} 18 | @endforeach 19 |
├── .node-version ├── database ├── .gitignore ├── seeders │ └── DatabaseSeeder.php ├── migrations │ ├── 2022_06_08_223408_remove_email_from_users.php │ ├── 2022_05_18_060919_add_is_admin_to_users.php │ ├── 2022_05_18_062000_create_games_table.php │ ├── 2022_05_18_062034_create_platforms_table.php │ ├── 2022_07_13_233312_add_name_to_platforms.php │ ├── 2022_07_13_233642_add_name_to_games.php │ ├── 2022_07_13_234643_add_directory_name_to_platforms.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2022_05_18_062057_create_files_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2019_12_14_000001_create_personal_access_tokens_table.php └── factories │ └── UserFactory.php ├── public └── .gitignore ├── bootstrap ├── cache │ └── .gitignore ├── helpers.php └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── static ├── robots.txt ├── favicon.ico ├── images │ └── logo-full.png ├── icons │ ├── slash.svg │ └── x.svg ├── .htaccess ├── favicon.svg └── index.php ├── resources ├── views │ ├── components │ │ ├── forms │ │ │ ├── radio-input.blade.php │ │ │ ├── text-input.blade.php │ │ │ └── toggle-input.blade.php │ │ └── flash.blade.php │ ├── admin │ │ ├── dashboard.blade.php │ │ ├── platforms │ │ │ ├── modify.blade.php │ │ │ └── index.blade.php │ │ └── users │ │ │ ├── modify.blade.php │ │ │ └── index.blade.php │ ├── home.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ └── admin.blade.php │ └── auth │ │ └── login.blade.php ├── js │ ├── components │ │ ├── NotFound.vue │ │ ├── CsrfToken.vue │ │ ├── LoadingAnimation.vue │ │ ├── Icon.vue │ │ ├── AppLogo.vue │ │ ├── GameList.vue │ │ └── NavBar.vue │ ├── routes.js │ ├── app.js │ └── views │ │ ├── LibraryView.vue │ │ ├── SearchView.vue │ │ └── GameView.vue └── sass │ ├── _variables.scss │ └── app.scss ├── .prettierrc ├── apache.conf ├── .env.example ├── config ├── cartridge.php ├── igdb.php ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── sanctum.php ├── filesystems.php ├── queue.php ├── cache.php ├── mail.php ├── auth.php ├── logging.php ├── scout.php ├── database.php ├── session.php └── app.php ├── .gitattributes ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .styleci.yml ├── app ├── LogLevel.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustHosts.php │ │ ├── TrimStrings.php │ │ ├── Authenticate.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── FileController.php │ │ ├── HomeController.php │ │ ├── PlatformController.php │ │ ├── GameController.php │ │ ├── Auth │ │ │ └── LoginController.php │ │ └── Admin │ │ │ ├── PlatformsController.php │ │ │ └── UsersController.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Console │ ├── CartridgeCommand.php │ ├── Kernel.php │ └── Commands │ │ ├── Initialize.php │ │ └── Scan.php ├── Models │ ├── Platform.php │ ├── User.php │ ├── File.php │ └── Game.php └── Exceptions │ └── Handler.php ├── .gitignore ├── .editorconfig ├── .dockerignore ├── lang └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── routes ├── channels.php ├── console.php ├── api.php └── web.php ├── webpack.mix.js ├── package.json ├── phpunit.xml ├── docker-compose.test.yml ├── docker-entrypoint.sh ├── composer.json ├── artisan ├── Dockerfile ├── docker-compose.yml └── README.md /.node-version: -------------------------------------------------------------------------------- 1 | v18.3.0 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | **/* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/views/components/forms/radio-input.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true 4 | } 5 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /resources/views/components/flash.blade.php: -------------------------------------------------------------------------------- 1 |
No results found.
3 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |{{ $status['message'] }}
48 |
8 | 9 | A self-hosted game browser. 10 |
11 |