kenken999 commited on
Commit
50cf058
·
1 Parent(s): 3256486

laravel install

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. composer.phar +3 -0
  3. install_lararavel.md +6 -0
  4. laravel-sample/.editorconfig +18 -0
  5. laravel-sample/.env.example +65 -0
  6. laravel-sample/.gitattributes +11 -0
  7. laravel-sample/.gitignore +26 -0
  8. laravel-sample/README.md +61 -0
  9. laravel-sample/app/Http/Controllers/Controller.php +8 -0
  10. laravel-sample/app/Models/User.php +48 -0
  11. laravel-sample/app/Providers/AppServiceProvider.php +24 -0
  12. laravel-sample/artisan +18 -0
  13. laravel-sample/bootstrap/app.php +18 -0
  14. laravel-sample/bootstrap/cache/.gitignore +2 -0
  15. laravel-sample/bootstrap/providers.php +5 -0
  16. laravel-sample/composer.json +75 -0
  17. laravel-sample/composer.lock +0 -0
  18. laravel-sample/config/app.php +126 -0
  19. laravel-sample/config/auth.php +115 -0
  20. laravel-sample/config/cache.php +108 -0
  21. laravel-sample/config/database.php +174 -0
  22. laravel-sample/config/filesystems.php +80 -0
  23. laravel-sample/config/logging.php +132 -0
  24. laravel-sample/config/mail.php +118 -0
  25. laravel-sample/config/queue.php +112 -0
  26. laravel-sample/config/services.php +38 -0
  27. laravel-sample/config/session.php +217 -0
  28. laravel-sample/database/.gitignore +1 -0
  29. laravel-sample/database/factories/UserFactory.php +44 -0
  30. laravel-sample/database/migrations/0001_01_01_000000_create_users_table.php +49 -0
  31. laravel-sample/database/migrations/0001_01_01_000001_create_cache_table.php +35 -0
  32. laravel-sample/database/migrations/0001_01_01_000002_create_jobs_table.php +57 -0
  33. laravel-sample/database/seeders/DatabaseSeeder.php +23 -0
  34. laravel-sample/package.json +17 -0
  35. laravel-sample/phpunit.xml +33 -0
  36. laravel-sample/public/.htaccess +25 -0
  37. laravel-sample/public/favicon.ico +0 -0
  38. laravel-sample/public/index.php +20 -0
  39. laravel-sample/public/robots.txt +2 -0
  40. laravel-sample/resources/css/app.css +11 -0
  41. laravel-sample/resources/js/app.js +1 -0
  42. laravel-sample/resources/js/bootstrap.js +4 -0
  43. laravel-sample/resources/views/welcome.blade.php +277 -0
  44. laravel-sample/routes/console.php +8 -0
  45. laravel-sample/routes/web.php +7 -0
  46. laravel-sample/storage/app/.gitignore +4 -0
  47. laravel-sample/storage/app/private/.gitignore +2 -0
  48. laravel-sample/storage/app/public/.gitignore +2 -0
  49. laravel-sample/storage/framework/.gitignore +9 -0
  50. laravel-sample/storage/framework/cache/.gitignore +3 -0
.gitattributes CHANGED
@@ -46,3 +46,4 @@ static/chara_blinking.png filter=lfs diff=lfs merge=lfs -text
46
  *.cmo filter=lfs diff=lfs merge=lfs -text
47
  *.wav filter=lfs diff=lfs merge=lfs -text
48
  *.pdf filter=lfs diff=lfs merge=lfs -text
 
 
46
  *.cmo filter=lfs diff=lfs merge=lfs -text
47
  *.wav filter=lfs diff=lfs merge=lfs -text
48
  *.pdf filter=lfs diff=lfs merge=lfs -text
49
+ composer.phar filter=lfs diff=lfs merge=lfs -text
composer.phar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e8829ec2b97fcb05158236984bc252bef902e7b8ff65555a1eeda4ec13fb82b
3
+ size 3125568
install_lararavel.md ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ 1 tree -1L
2
+ 2 apt-get install tree
3
+ 3 tree -1L
4
+ 4 tree -L 1
5
+ 5 git add .
6
+ 6 history > install_lararavel.md
laravel-sample/.editorconfig ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ end_of_line = lf
6
+ indent_size = 4
7
+ indent_style = space
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
13
+
14
+ [*.{yml,yaml}]
15
+ indent_size = 2
16
+
17
+ [docker-compose.yml]
18
+ indent_size = 4
laravel-sample/.env.example ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ APP_NAME=Laravel
2
+ APP_ENV=local
3
+ APP_KEY=
4
+ APP_DEBUG=true
5
+ APP_URL=http://localhost
6
+
7
+ APP_LOCALE=en
8
+ APP_FALLBACK_LOCALE=en
9
+ APP_FAKER_LOCALE=en_US
10
+
11
+ APP_MAINTENANCE_DRIVER=file
12
+ # APP_MAINTENANCE_STORE=database
13
+
14
+ PHP_CLI_SERVER_WORKERS=4
15
+
16
+ BCRYPT_ROUNDS=12
17
+
18
+ LOG_CHANNEL=stack
19
+ LOG_STACK=single
20
+ LOG_DEPRECATIONS_CHANNEL=null
21
+ LOG_LEVEL=debug
22
+
23
+ DB_CONNECTION=sqlite
24
+ # DB_HOST=127.0.0.1
25
+ # DB_PORT=3306
26
+ # DB_DATABASE=laravel
27
+ # DB_USERNAME=root
28
+ # DB_PASSWORD=
29
+
30
+ SESSION_DRIVER=database
31
+ SESSION_LIFETIME=120
32
+ SESSION_ENCRYPT=false
33
+ SESSION_PATH=/
34
+ SESSION_DOMAIN=null
35
+
36
+ BROADCAST_CONNECTION=log
37
+ FILESYSTEM_DISK=local
38
+ QUEUE_CONNECTION=database
39
+
40
+ CACHE_STORE=database
41
+ # CACHE_PREFIX=
42
+
43
+ MEMCACHED_HOST=127.0.0.1
44
+
45
+ REDIS_CLIENT=phpredis
46
+ REDIS_HOST=127.0.0.1
47
+ REDIS_PASSWORD=null
48
+ REDIS_PORT=6379
49
+
50
+ MAIL_MAILER=log
51
+ MAIL_SCHEME=null
52
+ MAIL_HOST=127.0.0.1
53
+ MAIL_PORT=2525
54
+ MAIL_USERNAME=null
55
+ MAIL_PASSWORD=null
56
+ MAIL_FROM_ADDRESS="hello@example.com"
57
+ MAIL_FROM_NAME="${APP_NAME}"
58
+
59
+ AWS_ACCESS_KEY_ID=
60
+ AWS_SECRET_ACCESS_KEY=
61
+ AWS_DEFAULT_REGION=us-east-1
62
+ AWS_BUCKET=
63
+ AWS_USE_PATH_STYLE_ENDPOINT=false
64
+
65
+ VITE_APP_NAME="${APP_NAME}"
laravel-sample/.gitattributes ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * text=auto eol=lf
2
+
3
+ *.blade.php diff=html
4
+ *.css diff=css
5
+ *.html diff=html
6
+ *.md diff=markdown
7
+ *.php diff=php
8
+
9
+ /.github export-ignore
10
+ CHANGELOG.md export-ignore
11
+ .styleci.yml export-ignore
laravel-sample/.gitignore ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.log
2
+ .DS_Store
3
+ .env
4
+ .env.backup
5
+ .env.production
6
+ .phpactor.json
7
+ .phpunit.result.cache
8
+ /.fleet
9
+ /.idea
10
+ /.nova
11
+ /.phpunit.cache
12
+ /.vscode
13
+ /.zed
14
+ /auth.json
15
+ /node_modules
16
+ /public/build
17
+ /public/hot
18
+ /public/storage
19
+ /storage/*.key
20
+ /storage/pail
21
+ /vendor
22
+ Homestead.json
23
+ Homestead.yaml
24
+ npm-debug.log
25
+ Thumbs.db
26
+ yarn-error.log
laravel-sample/README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
2
+
3
+ <p align="center">
4
+ <a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
5
+ <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
6
+ <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
7
+ <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
8
+ </p>
9
+
10
+ ## About Laravel
11
+
12
+ 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:
13
+
14
+ - [Simple, fast routing engine](https://laravel.com/docs/routing).
15
+ - [Powerful dependency injection container](https://laravel.com/docs/container).
16
+ - Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
17
+ - Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
18
+ - Database agnostic [schema migrations](https://laravel.com/docs/migrations).
19
+ - [Robust background job processing](https://laravel.com/docs/queues).
20
+ - [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
21
+
22
+ Laravel is accessible, powerful, and provides tools required for large, robust applications.
23
+
24
+ ## Learning Laravel
25
+
26
+ 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.
27
+
28
+ You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
29
+
30
+ 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.
31
+
32
+ ## Laravel Sponsors
33
+
34
+ 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).
35
+
36
+ ### Premium Partners
37
+
38
+ - **[Vehikl](https://vehikl.com)**
39
+ - **[Tighten Co.](https://tighten.co)**
40
+ - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
41
+ - **[64 Robots](https://64robots.com)**
42
+ - **[Curotec](https://www.curotec.com/services/technologies/laravel)**
43
+ - **[DevSquad](https://devsquad.com/hire-laravel-developers)**
44
+ - **[Redberry](https://redberry.international/laravel-development)**
45
+ - **[Active Logic](https://activelogic.com)**
46
+
47
+ ## Contributing
48
+
49
+ Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
50
+
51
+ ## Code of Conduct
52
+
53
+ 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).
54
+
55
+ ## Security Vulnerabilities
56
+
57
+ 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.
58
+
59
+ ## License
60
+
61
+ The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
laravel-sample/app/Http/Controllers/Controller.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace App\Http\Controllers;
4
+
5
+ abstract class Controller
6
+ {
7
+ //
8
+ }
laravel-sample/app/Models/User.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace App\Models;
4
+
5
+ // use Illuminate\Contracts\Auth\MustVerifyEmail;
6
+ use Illuminate\Database\Eloquent\Factories\HasFactory;
7
+ use Illuminate\Foundation\Auth\User as Authenticatable;
8
+ use Illuminate\Notifications\Notifiable;
9
+
10
+ class User extends Authenticatable
11
+ {
12
+ /** @use HasFactory<\Database\Factories\UserFactory> */
13
+ use HasFactory, Notifiable;
14
+
15
+ /**
16
+ * The attributes that are mass assignable.
17
+ *
18
+ * @var list<string>
19
+ */
20
+ protected $fillable = [
21
+ 'name',
22
+ 'email',
23
+ 'password',
24
+ ];
25
+
26
+ /**
27
+ * The attributes that should be hidden for serialization.
28
+ *
29
+ * @var list<string>
30
+ */
31
+ protected $hidden = [
32
+ 'password',
33
+ 'remember_token',
34
+ ];
35
+
36
+ /**
37
+ * Get the attributes that should be cast.
38
+ *
39
+ * @return array<string, string>
40
+ */
41
+ protected function casts(): array
42
+ {
43
+ return [
44
+ 'email_verified_at' => 'datetime',
45
+ 'password' => 'hashed',
46
+ ];
47
+ }
48
+ }
laravel-sample/app/Providers/AppServiceProvider.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace App\Providers;
4
+
5
+ use Illuminate\Support\ServiceProvider;
6
+
7
+ class AppServiceProvider extends ServiceProvider
8
+ {
9
+ /**
10
+ * Register any application services.
11
+ */
12
+ public function register(): void
13
+ {
14
+ //
15
+ }
16
+
17
+ /**
18
+ * Bootstrap any application services.
19
+ */
20
+ public function boot(): void
21
+ {
22
+ //
23
+ }
24
+ }
laravel-sample/artisan ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env php
2
+ <?php
3
+
4
+ use Illuminate\Foundation\Application;
5
+ use Symfony\Component\Console\Input\ArgvInput;
6
+
7
+ define('LARAVEL_START', microtime(true));
8
+
9
+ // Register the Composer autoloader...
10
+ require __DIR__.'/vendor/autoload.php';
11
+
12
+ // Bootstrap Laravel and handle the command...
13
+ /** @var Application $app */
14
+ $app = require_once __DIR__.'/bootstrap/app.php';
15
+
16
+ $status = $app->handleCommand(new ArgvInput);
17
+
18
+ exit($status);
laravel-sample/bootstrap/app.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Foundation\Application;
4
+ use Illuminate\Foundation\Configuration\Exceptions;
5
+ use Illuminate\Foundation\Configuration\Middleware;
6
+
7
+ return Application::configure(basePath: dirname(__DIR__))
8
+ ->withRouting(
9
+ web: __DIR__.'/../routes/web.php',
10
+ commands: __DIR__.'/../routes/console.php',
11
+ health: '/up',
12
+ )
13
+ ->withMiddleware(function (Middleware $middleware) {
14
+ //
15
+ })
16
+ ->withExceptions(function (Exceptions $exceptions) {
17
+ //
18
+ })->create();
laravel-sample/bootstrap/cache/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *
2
+ !.gitignore
laravel-sample/bootstrap/providers.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+ App\Providers\AppServiceProvider::class,
5
+ ];
laravel-sample/composer.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://getcomposer.org/schema.json",
3
+ "name": "laravel/laravel",
4
+ "type": "project",
5
+ "description": "The skeleton application for the Laravel framework.",
6
+ "keywords": ["laravel", "framework"],
7
+ "license": "MIT",
8
+ "require": {
9
+ "php": "^8.2",
10
+ "laravel/framework": "^12.0",
11
+ "laravel/tinker": "^2.10.1"
12
+ },
13
+ "require-dev": {
14
+ "fakerphp/faker": "^1.23",
15
+ "laravel/pail": "^1.2.2",
16
+ "laravel/pint": "^1.13",
17
+ "laravel/sail": "^1.41",
18
+ "mockery/mockery": "^1.6",
19
+ "nunomaduro/collision": "^8.6",
20
+ "phpunit/phpunit": "^11.5.3"
21
+ },
22
+ "autoload": {
23
+ "psr-4": {
24
+ "App\\": "app/",
25
+ "Database\\Factories\\": "database/factories/",
26
+ "Database\\Seeders\\": "database/seeders/"
27
+ }
28
+ },
29
+ "autoload-dev": {
30
+ "psr-4": {
31
+ "Tests\\": "tests/"
32
+ }
33
+ },
34
+ "scripts": {
35
+ "post-autoload-dump": [
36
+ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
37
+ "@php artisan package:discover --ansi"
38
+ ],
39
+ "post-update-cmd": [
40
+ "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
41
+ ],
42
+ "post-root-package-install": [
43
+ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
44
+ ],
45
+ "post-create-project-cmd": [
46
+ "@php artisan key:generate --ansi",
47
+ "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
48
+ "@php artisan migrate --graceful --ansi"
49
+ ],
50
+ "dev": [
51
+ "Composer\\Config::disableProcessTimeout",
52
+ "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
53
+ ],
54
+ "test": [
55
+ "@php artisan config:clear --ansi",
56
+ "@php artisan test"
57
+ ]
58
+ },
59
+ "extra": {
60
+ "laravel": {
61
+ "dont-discover": []
62
+ }
63
+ },
64
+ "config": {
65
+ "optimize-autoloader": true,
66
+ "preferred-install": "dist",
67
+ "sort-packages": true,
68
+ "allow-plugins": {
69
+ "pestphp/pest-plugin": true,
70
+ "php-http/discovery": true
71
+ }
72
+ },
73
+ "minimum-stability": "stable",
74
+ "prefer-stable": true
75
+ }
laravel-sample/composer.lock ADDED
The diff for this file is too large to render. See raw diff
 
laravel-sample/config/app.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Application Name
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | This value is the name of your application, which will be used when the
11
+ | framework needs to place the application's name in a notification or
12
+ | other UI elements where an application name needs to be displayed.
13
+ |
14
+ */
15
+
16
+ 'name' => env('APP_NAME', 'Laravel'),
17
+
18
+ /*
19
+ |--------------------------------------------------------------------------
20
+ | Application Environment
21
+ |--------------------------------------------------------------------------
22
+ |
23
+ | This value determines the "environment" your application is currently
24
+ | running in. This may determine how you prefer to configure various
25
+ | services the application utilizes. Set this in your ".env" file.
26
+ |
27
+ */
28
+
29
+ 'env' => env('APP_ENV', 'production'),
30
+
31
+ /*
32
+ |--------------------------------------------------------------------------
33
+ | Application Debug Mode
34
+ |--------------------------------------------------------------------------
35
+ |
36
+ | When your application is in debug mode, detailed error messages with
37
+ | stack traces will be shown on every error that occurs within your
38
+ | application. If disabled, a simple generic error page is shown.
39
+ |
40
+ */
41
+
42
+ 'debug' => (bool) env('APP_DEBUG', false),
43
+
44
+ /*
45
+ |--------------------------------------------------------------------------
46
+ | Application URL
47
+ |--------------------------------------------------------------------------
48
+ |
49
+ | This URL is used by the console to properly generate URLs when using
50
+ | the Artisan command line tool. You should set this to the root of
51
+ | the application so that it's available within Artisan commands.
52
+ |
53
+ */
54
+
55
+ 'url' => env('APP_URL', 'http://localhost'),
56
+
57
+ /*
58
+ |--------------------------------------------------------------------------
59
+ | Application Timezone
60
+ |--------------------------------------------------------------------------
61
+ |
62
+ | Here you may specify the default timezone for your application, which
63
+ | will be used by the PHP date and date-time functions. The timezone
64
+ | is set to "UTC" by default as it is suitable for most use cases.
65
+ |
66
+ */
67
+
68
+ 'timezone' => 'UTC',
69
+
70
+ /*
71
+ |--------------------------------------------------------------------------
72
+ | Application Locale Configuration
73
+ |--------------------------------------------------------------------------
74
+ |
75
+ | The application locale determines the default locale that will be used
76
+ | by Laravel's translation / localization methods. This option can be
77
+ | set to any locale for which you plan to have translation strings.
78
+ |
79
+ */
80
+
81
+ 'locale' => env('APP_LOCALE', 'en'),
82
+
83
+ 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
84
+
85
+ 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
86
+
87
+ /*
88
+ |--------------------------------------------------------------------------
89
+ | Encryption Key
90
+ |--------------------------------------------------------------------------
91
+ |
92
+ | This key is utilized by Laravel's encryption services and should be set
93
+ | to a random, 32 character string to ensure that all encrypted values
94
+ | are secure. You should do this prior to deploying the application.
95
+ |
96
+ */
97
+
98
+ 'cipher' => 'AES-256-CBC',
99
+
100
+ 'key' => env('APP_KEY'),
101
+
102
+ 'previous_keys' => [
103
+ ...array_filter(
104
+ explode(',', env('APP_PREVIOUS_KEYS', ''))
105
+ ),
106
+ ],
107
+
108
+ /*
109
+ |--------------------------------------------------------------------------
110
+ | Maintenance Mode Driver
111
+ |--------------------------------------------------------------------------
112
+ |
113
+ | These configuration options determine the driver used to determine and
114
+ | manage Laravel's "maintenance mode" status. The "cache" driver will
115
+ | allow maintenance mode to be controlled across multiple machines.
116
+ |
117
+ | Supported drivers: "file", "cache"
118
+ |
119
+ */
120
+
121
+ 'maintenance' => [
122
+ 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
123
+ 'store' => env('APP_MAINTENANCE_STORE', 'database'),
124
+ ],
125
+
126
+ ];
laravel-sample/config/auth.php ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Authentication Defaults
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | This option defines the default authentication "guard" and password
11
+ | reset "broker" for your application. You may change these values
12
+ | as required, but they're a perfect start for most applications.
13
+ |
14
+ */
15
+
16
+ 'defaults' => [
17
+ 'guard' => env('AUTH_GUARD', 'web'),
18
+ 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
19
+ ],
20
+
21
+ /*
22
+ |--------------------------------------------------------------------------
23
+ | Authentication Guards
24
+ |--------------------------------------------------------------------------
25
+ |
26
+ | Next, you may define every authentication guard for your application.
27
+ | Of course, a great default configuration has been defined for you
28
+ | which utilizes session storage plus the Eloquent user provider.
29
+ |
30
+ | All authentication guards have a user provider, which defines how the
31
+ | users are actually retrieved out of your database or other storage
32
+ | system used by the application. Typically, Eloquent is utilized.
33
+ |
34
+ | Supported: "session"
35
+ |
36
+ */
37
+
38
+ 'guards' => [
39
+ 'web' => [
40
+ 'driver' => 'session',
41
+ 'provider' => 'users',
42
+ ],
43
+ ],
44
+
45
+ /*
46
+ |--------------------------------------------------------------------------
47
+ | User Providers
48
+ |--------------------------------------------------------------------------
49
+ |
50
+ | All authentication guards have a user provider, which defines how the
51
+ | users are actually retrieved out of your database or other storage
52
+ | system used by the application. Typically, Eloquent is utilized.
53
+ |
54
+ | If you have multiple user tables or models you may configure multiple
55
+ | providers to represent the model / table. These providers may then
56
+ | be assigned to any extra authentication guards you have defined.
57
+ |
58
+ | Supported: "database", "eloquent"
59
+ |
60
+ */
61
+
62
+ 'providers' => [
63
+ 'users' => [
64
+ 'driver' => 'eloquent',
65
+ 'model' => env('AUTH_MODEL', App\Models\User::class),
66
+ ],
67
+
68
+ // 'users' => [
69
+ // 'driver' => 'database',
70
+ // 'table' => 'users',
71
+ // ],
72
+ ],
73
+
74
+ /*
75
+ |--------------------------------------------------------------------------
76
+ | Resetting Passwords
77
+ |--------------------------------------------------------------------------
78
+ |
79
+ | These configuration options specify the behavior of Laravel's password
80
+ | reset functionality, including the table utilized for token storage
81
+ | and the user provider that is invoked to actually retrieve users.
82
+ |
83
+ | The expiry time is the number of minutes that each reset token will be
84
+ | considered valid. This security feature keeps tokens short-lived so
85
+ | they have less time to be guessed. You may change this as needed.
86
+ |
87
+ | The throttle setting is the number of seconds a user must wait before
88
+ | generating more password reset tokens. This prevents the user from
89
+ | quickly generating a very large amount of password reset tokens.
90
+ |
91
+ */
92
+
93
+ 'passwords' => [
94
+ 'users' => [
95
+ 'provider' => 'users',
96
+ 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
97
+ 'expire' => 60,
98
+ 'throttle' => 60,
99
+ ],
100
+ ],
101
+
102
+ /*
103
+ |--------------------------------------------------------------------------
104
+ | Password Confirmation Timeout
105
+ |--------------------------------------------------------------------------
106
+ |
107
+ | Here you may define the number of seconds before a password confirmation
108
+ | window expires and users are asked to re-enter their password via the
109
+ | confirmation screen. By default, the timeout lasts for three hours.
110
+ |
111
+ */
112
+
113
+ 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
114
+
115
+ ];
laravel-sample/config/cache.php ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Support\Str;
4
+
5
+ return [
6
+
7
+ /*
8
+ |--------------------------------------------------------------------------
9
+ | Default Cache Store
10
+ |--------------------------------------------------------------------------
11
+ |
12
+ | This option controls the default cache store that will be used by the
13
+ | framework. This connection is utilized if another isn't explicitly
14
+ | specified when running a cache operation inside the application.
15
+ |
16
+ */
17
+
18
+ 'default' => env('CACHE_STORE', 'database'),
19
+
20
+ /*
21
+ |--------------------------------------------------------------------------
22
+ | Cache Stores
23
+ |--------------------------------------------------------------------------
24
+ |
25
+ | Here you may define all of the cache "stores" for your application as
26
+ | well as their drivers. You may even define multiple stores for the
27
+ | same cache driver to group types of items stored in your caches.
28
+ |
29
+ | Supported drivers: "array", "database", "file", "memcached",
30
+ | "redis", "dynamodb", "octane", "null"
31
+ |
32
+ */
33
+
34
+ 'stores' => [
35
+
36
+ 'array' => [
37
+ 'driver' => 'array',
38
+ 'serialize' => false,
39
+ ],
40
+
41
+ 'database' => [
42
+ 'driver' => 'database',
43
+ 'connection' => env('DB_CACHE_CONNECTION'),
44
+ 'table' => env('DB_CACHE_TABLE', 'cache'),
45
+ 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
46
+ 'lock_table' => env('DB_CACHE_LOCK_TABLE'),
47
+ ],
48
+
49
+ 'file' => [
50
+ 'driver' => 'file',
51
+ 'path' => storage_path('framework/cache/data'),
52
+ 'lock_path' => storage_path('framework/cache/data'),
53
+ ],
54
+
55
+ 'memcached' => [
56
+ 'driver' => 'memcached',
57
+ 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
58
+ 'sasl' => [
59
+ env('MEMCACHED_USERNAME'),
60
+ env('MEMCACHED_PASSWORD'),
61
+ ],
62
+ 'options' => [
63
+ // Memcached::OPT_CONNECT_TIMEOUT => 2000,
64
+ ],
65
+ 'servers' => [
66
+ [
67
+ 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
68
+ 'port' => env('MEMCACHED_PORT', 11211),
69
+ 'weight' => 100,
70
+ ],
71
+ ],
72
+ ],
73
+
74
+ 'redis' => [
75
+ 'driver' => 'redis',
76
+ 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
77
+ 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
78
+ ],
79
+
80
+ 'dynamodb' => [
81
+ 'driver' => 'dynamodb',
82
+ 'key' => env('AWS_ACCESS_KEY_ID'),
83
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
84
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
85
+ 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
86
+ 'endpoint' => env('DYNAMODB_ENDPOINT'),
87
+ ],
88
+
89
+ 'octane' => [
90
+ 'driver' => 'octane',
91
+ ],
92
+
93
+ ],
94
+
95
+ /*
96
+ |--------------------------------------------------------------------------
97
+ | Cache Key Prefix
98
+ |--------------------------------------------------------------------------
99
+ |
100
+ | When utilizing the APC, database, memcached, Redis, and DynamoDB cache
101
+ | stores, there might be other applications using the same cache. For
102
+ | that reason, you may prefix every cache key to avoid collisions.
103
+ |
104
+ */
105
+
106
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
107
+
108
+ ];
laravel-sample/config/database.php ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Support\Str;
4
+
5
+ return [
6
+
7
+ /*
8
+ |--------------------------------------------------------------------------
9
+ | Default Database Connection Name
10
+ |--------------------------------------------------------------------------
11
+ |
12
+ | Here you may specify which of the database connections below you wish
13
+ | to use as your default connection for database operations. This is
14
+ | the connection which will be utilized unless another connection
15
+ | is explicitly specified when you execute a query / statement.
16
+ |
17
+ */
18
+
19
+ 'default' => env('DB_CONNECTION', 'sqlite'),
20
+
21
+ /*
22
+ |--------------------------------------------------------------------------
23
+ | Database Connections
24
+ |--------------------------------------------------------------------------
25
+ |
26
+ | Below are all of the database connections defined for your application.
27
+ | An example configuration is provided for each database system which
28
+ | is supported by Laravel. You're free to add / remove connections.
29
+ |
30
+ */
31
+
32
+ 'connections' => [
33
+
34
+ 'sqlite' => [
35
+ 'driver' => 'sqlite',
36
+ 'url' => env('DB_URL'),
37
+ 'database' => env('DB_DATABASE', database_path('database.sqlite')),
38
+ 'prefix' => '',
39
+ 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
40
+ 'busy_timeout' => null,
41
+ 'journal_mode' => null,
42
+ 'synchronous' => null,
43
+ ],
44
+
45
+ 'mysql' => [
46
+ 'driver' => 'mysql',
47
+ 'url' => env('DB_URL'),
48
+ 'host' => env('DB_HOST', '127.0.0.1'),
49
+ 'port' => env('DB_PORT', '3306'),
50
+ 'database' => env('DB_DATABASE', 'laravel'),
51
+ 'username' => env('DB_USERNAME', 'root'),
52
+ 'password' => env('DB_PASSWORD', ''),
53
+ 'unix_socket' => env('DB_SOCKET', ''),
54
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
55
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
56
+ 'prefix' => '',
57
+ 'prefix_indexes' => true,
58
+ 'strict' => true,
59
+ 'engine' => null,
60
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
61
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
62
+ ]) : [],
63
+ ],
64
+
65
+ 'mariadb' => [
66
+ 'driver' => 'mariadb',
67
+ 'url' => env('DB_URL'),
68
+ 'host' => env('DB_HOST', '127.0.0.1'),
69
+ 'port' => env('DB_PORT', '3306'),
70
+ 'database' => env('DB_DATABASE', 'laravel'),
71
+ 'username' => env('DB_USERNAME', 'root'),
72
+ 'password' => env('DB_PASSWORD', ''),
73
+ 'unix_socket' => env('DB_SOCKET', ''),
74
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
75
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
76
+ 'prefix' => '',
77
+ 'prefix_indexes' => true,
78
+ 'strict' => true,
79
+ 'engine' => null,
80
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
81
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
82
+ ]) : [],
83
+ ],
84
+
85
+ 'pgsql' => [
86
+ 'driver' => 'pgsql',
87
+ 'url' => env('DB_URL'),
88
+ 'host' => env('DB_HOST', '127.0.0.1'),
89
+ 'port' => env('DB_PORT', '5432'),
90
+ 'database' => env('DB_DATABASE', 'laravel'),
91
+ 'username' => env('DB_USERNAME', 'root'),
92
+ 'password' => env('DB_PASSWORD', ''),
93
+ 'charset' => env('DB_CHARSET', 'utf8'),
94
+ 'prefix' => '',
95
+ 'prefix_indexes' => true,
96
+ 'search_path' => 'public',
97
+ 'sslmode' => 'prefer',
98
+ ],
99
+
100
+ 'sqlsrv' => [
101
+ 'driver' => 'sqlsrv',
102
+ 'url' => env('DB_URL'),
103
+ 'host' => env('DB_HOST', 'localhost'),
104
+ 'port' => env('DB_PORT', '1433'),
105
+ 'database' => env('DB_DATABASE', 'laravel'),
106
+ 'username' => env('DB_USERNAME', 'root'),
107
+ 'password' => env('DB_PASSWORD', ''),
108
+ 'charset' => env('DB_CHARSET', 'utf8'),
109
+ 'prefix' => '',
110
+ 'prefix_indexes' => true,
111
+ // 'encrypt' => env('DB_ENCRYPT', 'yes'),
112
+ // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
113
+ ],
114
+
115
+ ],
116
+
117
+ /*
118
+ |--------------------------------------------------------------------------
119
+ | Migration Repository Table
120
+ |--------------------------------------------------------------------------
121
+ |
122
+ | This table keeps track of all the migrations that have already run for
123
+ | your application. Using this information, we can determine which of
124
+ | the migrations on disk haven't actually been run on the database.
125
+ |
126
+ */
127
+
128
+ 'migrations' => [
129
+ 'table' => 'migrations',
130
+ 'update_date_on_publish' => true,
131
+ ],
132
+
133
+ /*
134
+ |--------------------------------------------------------------------------
135
+ | Redis Databases
136
+ |--------------------------------------------------------------------------
137
+ |
138
+ | Redis is an open source, fast, and advanced key-value store that also
139
+ | provides a richer body of commands than a typical key-value system
140
+ | such as Memcached. You may define your connection settings here.
141
+ |
142
+ */
143
+
144
+ 'redis' => [
145
+
146
+ 'client' => env('REDIS_CLIENT', 'phpredis'),
147
+
148
+ 'options' => [
149
+ 'cluster' => env('REDIS_CLUSTER', 'redis'),
150
+ 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
151
+ 'persistent' => env('REDIS_PERSISTENT', false),
152
+ ],
153
+
154
+ 'default' => [
155
+ 'url' => env('REDIS_URL'),
156
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
157
+ 'username' => env('REDIS_USERNAME'),
158
+ 'password' => env('REDIS_PASSWORD'),
159
+ 'port' => env('REDIS_PORT', '6379'),
160
+ 'database' => env('REDIS_DB', '0'),
161
+ ],
162
+
163
+ 'cache' => [
164
+ 'url' => env('REDIS_URL'),
165
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
166
+ 'username' => env('REDIS_USERNAME'),
167
+ 'password' => env('REDIS_PASSWORD'),
168
+ 'port' => env('REDIS_PORT', '6379'),
169
+ 'database' => env('REDIS_CACHE_DB', '1'),
170
+ ],
171
+
172
+ ],
173
+
174
+ ];
laravel-sample/config/filesystems.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Default Filesystem Disk
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | Here you may specify the default filesystem disk that should be used
11
+ | by the framework. The "local" disk, as well as a variety of cloud
12
+ | based disks are available to your application for file storage.
13
+ |
14
+ */
15
+
16
+ 'default' => env('FILESYSTEM_DISK', 'local'),
17
+
18
+ /*
19
+ |--------------------------------------------------------------------------
20
+ | Filesystem Disks
21
+ |--------------------------------------------------------------------------
22
+ |
23
+ | Below you may configure as many filesystem disks as necessary, and you
24
+ | may even configure multiple disks for the same driver. Examples for
25
+ | most supported storage drivers are configured here for reference.
26
+ |
27
+ | Supported drivers: "local", "ftp", "sftp", "s3"
28
+ |
29
+ */
30
+
31
+ 'disks' => [
32
+
33
+ 'local' => [
34
+ 'driver' => 'local',
35
+ 'root' => storage_path('app/private'),
36
+ 'serve' => true,
37
+ 'throw' => false,
38
+ 'report' => false,
39
+ ],
40
+
41
+ 'public' => [
42
+ 'driver' => 'local',
43
+ 'root' => storage_path('app/public'),
44
+ 'url' => env('APP_URL').'/storage',
45
+ 'visibility' => 'public',
46
+ 'throw' => false,
47
+ 'report' => false,
48
+ ],
49
+
50
+ 's3' => [
51
+ 'driver' => 's3',
52
+ 'key' => env('AWS_ACCESS_KEY_ID'),
53
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
54
+ 'region' => env('AWS_DEFAULT_REGION'),
55
+ 'bucket' => env('AWS_BUCKET'),
56
+ 'url' => env('AWS_URL'),
57
+ 'endpoint' => env('AWS_ENDPOINT'),
58
+ 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
59
+ 'throw' => false,
60
+ 'report' => false,
61
+ ],
62
+
63
+ ],
64
+
65
+ /*
66
+ |--------------------------------------------------------------------------
67
+ | Symbolic Links
68
+ |--------------------------------------------------------------------------
69
+ |
70
+ | Here you may configure the symbolic links that will be created when the
71
+ | `storage:link` Artisan command is executed. The array keys should be
72
+ | the locations of the links and the values should be their targets.
73
+ |
74
+ */
75
+
76
+ 'links' => [
77
+ public_path('storage') => storage_path('app/public'),
78
+ ],
79
+
80
+ ];
laravel-sample/config/logging.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Monolog\Handler\NullHandler;
4
+ use Monolog\Handler\StreamHandler;
5
+ use Monolog\Handler\SyslogUdpHandler;
6
+ use Monolog\Processor\PsrLogMessageProcessor;
7
+
8
+ return [
9
+
10
+ /*
11
+ |--------------------------------------------------------------------------
12
+ | Default Log Channel
13
+ |--------------------------------------------------------------------------
14
+ |
15
+ | This option defines the default log channel that is utilized to write
16
+ | messages to your logs. The value provided here should match one of
17
+ | the channels present in the list of "channels" configured below.
18
+ |
19
+ */
20
+
21
+ 'default' => env('LOG_CHANNEL', 'stack'),
22
+
23
+ /*
24
+ |--------------------------------------------------------------------------
25
+ | Deprecations Log Channel
26
+ |--------------------------------------------------------------------------
27
+ |
28
+ | This option controls the log channel that should be used to log warnings
29
+ | regarding deprecated PHP and library features. This allows you to get
30
+ | your application ready for upcoming major versions of dependencies.
31
+ |
32
+ */
33
+
34
+ 'deprecations' => [
35
+ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
36
+ 'trace' => env('LOG_DEPRECATIONS_TRACE', false),
37
+ ],
38
+
39
+ /*
40
+ |--------------------------------------------------------------------------
41
+ | Log Channels
42
+ |--------------------------------------------------------------------------
43
+ |
44
+ | Here you may configure the log channels for your application. Laravel
45
+ | utilizes the Monolog PHP logging library, which includes a variety
46
+ | of powerful log handlers and formatters that you're free to use.
47
+ |
48
+ | Available drivers: "single", "daily", "slack", "syslog",
49
+ | "errorlog", "monolog", "custom", "stack"
50
+ |
51
+ */
52
+
53
+ 'channels' => [
54
+
55
+ 'stack' => [
56
+ 'driver' => 'stack',
57
+ 'channels' => explode(',', env('LOG_STACK', 'single')),
58
+ 'ignore_exceptions' => false,
59
+ ],
60
+
61
+ 'single' => [
62
+ 'driver' => 'single',
63
+ 'path' => storage_path('logs/laravel.log'),
64
+ 'level' => env('LOG_LEVEL', 'debug'),
65
+ 'replace_placeholders' => true,
66
+ ],
67
+
68
+ 'daily' => [
69
+ 'driver' => 'daily',
70
+ 'path' => storage_path('logs/laravel.log'),
71
+ 'level' => env('LOG_LEVEL', 'debug'),
72
+ 'days' => env('LOG_DAILY_DAYS', 14),
73
+ 'replace_placeholders' => true,
74
+ ],
75
+
76
+ 'slack' => [
77
+ 'driver' => 'slack',
78
+ 'url' => env('LOG_SLACK_WEBHOOK_URL'),
79
+ 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
80
+ 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
81
+ 'level' => env('LOG_LEVEL', 'critical'),
82
+ 'replace_placeholders' => true,
83
+ ],
84
+
85
+ 'papertrail' => [
86
+ 'driver' => 'monolog',
87
+ 'level' => env('LOG_LEVEL', 'debug'),
88
+ 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
89
+ 'handler_with' => [
90
+ 'host' => env('PAPERTRAIL_URL'),
91
+ 'port' => env('PAPERTRAIL_PORT'),
92
+ 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
93
+ ],
94
+ 'processors' => [PsrLogMessageProcessor::class],
95
+ ],
96
+
97
+ 'stderr' => [
98
+ 'driver' => 'monolog',
99
+ 'level' => env('LOG_LEVEL', 'debug'),
100
+ 'handler' => StreamHandler::class,
101
+ 'handler_with' => [
102
+ 'stream' => 'php://stderr',
103
+ ],
104
+ 'formatter' => env('LOG_STDERR_FORMATTER'),
105
+ 'processors' => [PsrLogMessageProcessor::class],
106
+ ],
107
+
108
+ 'syslog' => [
109
+ 'driver' => 'syslog',
110
+ 'level' => env('LOG_LEVEL', 'debug'),
111
+ 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
112
+ 'replace_placeholders' => true,
113
+ ],
114
+
115
+ 'errorlog' => [
116
+ 'driver' => 'errorlog',
117
+ 'level' => env('LOG_LEVEL', 'debug'),
118
+ 'replace_placeholders' => true,
119
+ ],
120
+
121
+ 'null' => [
122
+ 'driver' => 'monolog',
123
+ 'handler' => NullHandler::class,
124
+ ],
125
+
126
+ 'emergency' => [
127
+ 'path' => storage_path('logs/laravel.log'),
128
+ ],
129
+
130
+ ],
131
+
132
+ ];
laravel-sample/config/mail.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Default Mailer
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | This option controls the default mailer that is used to send all email
11
+ | messages unless another mailer is explicitly specified when sending
12
+ | the message. All additional mailers can be configured within the
13
+ | "mailers" array. Examples of each type of mailer are provided.
14
+ |
15
+ */
16
+
17
+ 'default' => env('MAIL_MAILER', 'log'),
18
+
19
+ /*
20
+ |--------------------------------------------------------------------------
21
+ | Mailer Configurations
22
+ |--------------------------------------------------------------------------
23
+ |
24
+ | Here you may configure all of the mailers used by your application plus
25
+ | their respective settings. Several examples have been configured for
26
+ | you and you are free to add your own as your application requires.
27
+ |
28
+ | Laravel supports a variety of mail "transport" drivers that can be used
29
+ | when delivering an email. You may specify which one you're using for
30
+ | your mailers below. You may also add additional mailers if needed.
31
+ |
32
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
33
+ | "postmark", "resend", "log", "array",
34
+ | "failover", "roundrobin"
35
+ |
36
+ */
37
+
38
+ 'mailers' => [
39
+
40
+ 'smtp' => [
41
+ 'transport' => 'smtp',
42
+ 'scheme' => env('MAIL_SCHEME'),
43
+ 'url' => env('MAIL_URL'),
44
+ 'host' => env('MAIL_HOST', '127.0.0.1'),
45
+ 'port' => env('MAIL_PORT', 2525),
46
+ 'username' => env('MAIL_USERNAME'),
47
+ 'password' => env('MAIL_PASSWORD'),
48
+ 'timeout' => null,
49
+ 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
50
+ ],
51
+
52
+ 'ses' => [
53
+ 'transport' => 'ses',
54
+ ],
55
+
56
+ 'postmark' => [
57
+ 'transport' => 'postmark',
58
+ // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
59
+ // 'client' => [
60
+ // 'timeout' => 5,
61
+ // ],
62
+ ],
63
+
64
+ 'resend' => [
65
+ 'transport' => 'resend',
66
+ ],
67
+
68
+ 'sendmail' => [
69
+ 'transport' => 'sendmail',
70
+ 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
71
+ ],
72
+
73
+ 'log' => [
74
+ 'transport' => 'log',
75
+ 'channel' => env('MAIL_LOG_CHANNEL'),
76
+ ],
77
+
78
+ 'array' => [
79
+ 'transport' => 'array',
80
+ ],
81
+
82
+ 'failover' => [
83
+ 'transport' => 'failover',
84
+ 'mailers' => [
85
+ 'smtp',
86
+ 'log',
87
+ ],
88
+ 'retry_after' => 60,
89
+ ],
90
+
91
+ 'roundrobin' => [
92
+ 'transport' => 'roundrobin',
93
+ 'mailers' => [
94
+ 'ses',
95
+ 'postmark',
96
+ ],
97
+ 'retry_after' => 60,
98
+ ],
99
+
100
+ ],
101
+
102
+ /*
103
+ |--------------------------------------------------------------------------
104
+ | Global "From" Address
105
+ |--------------------------------------------------------------------------
106
+ |
107
+ | You may wish for all emails sent by your application to be sent from
108
+ | the same address. Here you may specify a name and address that is
109
+ | used globally for all emails that are sent by your application.
110
+ |
111
+ */
112
+
113
+ 'from' => [
114
+ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
115
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
116
+ ],
117
+
118
+ ];
laravel-sample/config/queue.php ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Default Queue Connection Name
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | Laravel's queue supports a variety of backends via a single, unified
11
+ | API, giving you convenient access to each backend using identical
12
+ | syntax for each. The default queue connection is defined below.
13
+ |
14
+ */
15
+
16
+ 'default' => env('QUEUE_CONNECTION', 'database'),
17
+
18
+ /*
19
+ |--------------------------------------------------------------------------
20
+ | Queue Connections
21
+ |--------------------------------------------------------------------------
22
+ |
23
+ | Here you may configure the connection options for every queue backend
24
+ | used by your application. An example configuration is provided for
25
+ | each backend supported by Laravel. You're also free to add more.
26
+ |
27
+ | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
28
+ |
29
+ */
30
+
31
+ 'connections' => [
32
+
33
+ 'sync' => [
34
+ 'driver' => 'sync',
35
+ ],
36
+
37
+ 'database' => [
38
+ 'driver' => 'database',
39
+ 'connection' => env('DB_QUEUE_CONNECTION'),
40
+ 'table' => env('DB_QUEUE_TABLE', 'jobs'),
41
+ 'queue' => env('DB_QUEUE', 'default'),
42
+ 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
43
+ 'after_commit' => false,
44
+ ],
45
+
46
+ 'beanstalkd' => [
47
+ 'driver' => 'beanstalkd',
48
+ 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
49
+ 'queue' => env('BEANSTALKD_QUEUE', 'default'),
50
+ 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
51
+ 'block_for' => 0,
52
+ 'after_commit' => false,
53
+ ],
54
+
55
+ 'sqs' => [
56
+ 'driver' => 'sqs',
57
+ 'key' => env('AWS_ACCESS_KEY_ID'),
58
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
59
+ 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
60
+ 'queue' => env('SQS_QUEUE', 'default'),
61
+ 'suffix' => env('SQS_SUFFIX'),
62
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
63
+ 'after_commit' => false,
64
+ ],
65
+
66
+ 'redis' => [
67
+ 'driver' => 'redis',
68
+ 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
69
+ 'queue' => env('REDIS_QUEUE', 'default'),
70
+ 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
71
+ 'block_for' => null,
72
+ 'after_commit' => false,
73
+ ],
74
+
75
+ ],
76
+
77
+ /*
78
+ |--------------------------------------------------------------------------
79
+ | Job Batching
80
+ |--------------------------------------------------------------------------
81
+ |
82
+ | The following options configure the database and table that store job
83
+ | batching information. These options can be updated to any database
84
+ | connection and table which has been defined by your application.
85
+ |
86
+ */
87
+
88
+ 'batching' => [
89
+ 'database' => env('DB_CONNECTION', 'sqlite'),
90
+ 'table' => 'job_batches',
91
+ ],
92
+
93
+ /*
94
+ |--------------------------------------------------------------------------
95
+ | Failed Queue Jobs
96
+ |--------------------------------------------------------------------------
97
+ |
98
+ | These options configure the behavior of failed queue job logging so you
99
+ | can control how and where failed jobs are stored. Laravel ships with
100
+ | support for storing failed jobs in a simple file or in a database.
101
+ |
102
+ | Supported drivers: "database-uuids", "dynamodb", "file", "null"
103
+ |
104
+ */
105
+
106
+ 'failed' => [
107
+ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
108
+ 'database' => env('DB_CONNECTION', 'sqlite'),
109
+ 'table' => 'failed_jobs',
110
+ ],
111
+
112
+ ];
laravel-sample/config/services.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ return [
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Third Party Services
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | This file is for storing the credentials for third party services such
11
+ | as Mailgun, Postmark, AWS and more. This file provides the de facto
12
+ | location for this type of information, allowing packages to have
13
+ | a conventional file to locate the various service credentials.
14
+ |
15
+ */
16
+
17
+ 'postmark' => [
18
+ 'token' => env('POSTMARK_TOKEN'),
19
+ ],
20
+
21
+ 'ses' => [
22
+ 'key' => env('AWS_ACCESS_KEY_ID'),
23
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
24
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
25
+ ],
26
+
27
+ 'resend' => [
28
+ 'key' => env('RESEND_KEY'),
29
+ ],
30
+
31
+ 'slack' => [
32
+ 'notifications' => [
33
+ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
34
+ 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
35
+ ],
36
+ ],
37
+
38
+ ];
laravel-sample/config/session.php ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Support\Str;
4
+
5
+ return [
6
+
7
+ /*
8
+ |--------------------------------------------------------------------------
9
+ | Default Session Driver
10
+ |--------------------------------------------------------------------------
11
+ |
12
+ | This option determines the default session driver that is utilized for
13
+ | incoming requests. Laravel supports a variety of storage options to
14
+ | persist session data. Database storage is a great default choice.
15
+ |
16
+ | Supported: "file", "cookie", "database", "memcached",
17
+ | "redis", "dynamodb", "array"
18
+ |
19
+ */
20
+
21
+ 'driver' => env('SESSION_DRIVER', 'database'),
22
+
23
+ /*
24
+ |--------------------------------------------------------------------------
25
+ | Session Lifetime
26
+ |--------------------------------------------------------------------------
27
+ |
28
+ | Here you may specify the number of minutes that you wish the session
29
+ | to be allowed to remain idle before it expires. If you want them
30
+ | to expire immediately when the browser is closed then you may
31
+ | indicate that via the expire_on_close configuration option.
32
+ |
33
+ */
34
+
35
+ 'lifetime' => (int) env('SESSION_LIFETIME', 120),
36
+
37
+ 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
38
+
39
+ /*
40
+ |--------------------------------------------------------------------------
41
+ | Session Encryption
42
+ |--------------------------------------------------------------------------
43
+ |
44
+ | This option allows you to easily specify that all of your session data
45
+ | should be encrypted before it's stored. All encryption is performed
46
+ | automatically by Laravel and you may use the session like normal.
47
+ |
48
+ */
49
+
50
+ 'encrypt' => env('SESSION_ENCRYPT', false),
51
+
52
+ /*
53
+ |--------------------------------------------------------------------------
54
+ | Session File Location
55
+ |--------------------------------------------------------------------------
56
+ |
57
+ | When utilizing the "file" session driver, the session files are placed
58
+ | on disk. The default storage location is defined here; however, you
59
+ | are free to provide another location where they should be stored.
60
+ |
61
+ */
62
+
63
+ 'files' => storage_path('framework/sessions'),
64
+
65
+ /*
66
+ |--------------------------------------------------------------------------
67
+ | Session Database Connection
68
+ |--------------------------------------------------------------------------
69
+ |
70
+ | When using the "database" or "redis" session drivers, you may specify a
71
+ | connection that should be used to manage these sessions. This should
72
+ | correspond to a connection in your database configuration options.
73
+ |
74
+ */
75
+
76
+ 'connection' => env('SESSION_CONNECTION'),
77
+
78
+ /*
79
+ |--------------------------------------------------------------------------
80
+ | Session Database Table
81
+ |--------------------------------------------------------------------------
82
+ |
83
+ | When using the "database" session driver, you may specify the table to
84
+ | be used to store sessions. Of course, a sensible default is defined
85
+ | for you; however, you're welcome to change this to another table.
86
+ |
87
+ */
88
+
89
+ 'table' => env('SESSION_TABLE', 'sessions'),
90
+
91
+ /*
92
+ |--------------------------------------------------------------------------
93
+ | Session Cache Store
94
+ |--------------------------------------------------------------------------
95
+ |
96
+ | When using one of the framework's cache driven session backends, you may
97
+ | define the cache store which should be used to store the session data
98
+ | between requests. This must match one of your defined cache stores.
99
+ |
100
+ | Affects: "dynamodb", "memcached", "redis"
101
+ |
102
+ */
103
+
104
+ 'store' => env('SESSION_STORE'),
105
+
106
+ /*
107
+ |--------------------------------------------------------------------------
108
+ | Session Sweeping Lottery
109
+ |--------------------------------------------------------------------------
110
+ |
111
+ | Some session drivers must manually sweep their storage location to get
112
+ | rid of old sessions from storage. Here are the chances that it will
113
+ | happen on a given request. By default, the odds are 2 out of 100.
114
+ |
115
+ */
116
+
117
+ 'lottery' => [2, 100],
118
+
119
+ /*
120
+ |--------------------------------------------------------------------------
121
+ | Session Cookie Name
122
+ |--------------------------------------------------------------------------
123
+ |
124
+ | Here you may change the name of the session cookie that is created by
125
+ | the framework. Typically, you should not need to change this value
126
+ | since doing so does not grant a meaningful security improvement.
127
+ |
128
+ */
129
+
130
+ 'cookie' => env(
131
+ 'SESSION_COOKIE',
132
+ Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
133
+ ),
134
+
135
+ /*
136
+ |--------------------------------------------------------------------------
137
+ | Session Cookie Path
138
+ |--------------------------------------------------------------------------
139
+ |
140
+ | The session cookie path determines the path for which the cookie will
141
+ | be regarded as available. Typically, this will be the root path of
142
+ | your application, but you're free to change this when necessary.
143
+ |
144
+ */
145
+
146
+ 'path' => env('SESSION_PATH', '/'),
147
+
148
+ /*
149
+ |--------------------------------------------------------------------------
150
+ | Session Cookie Domain
151
+ |--------------------------------------------------------------------------
152
+ |
153
+ | This value determines the domain and subdomains the session cookie is
154
+ | available to. By default, the cookie will be available to the root
155
+ | domain and all subdomains. Typically, this shouldn't be changed.
156
+ |
157
+ */
158
+
159
+ 'domain' => env('SESSION_DOMAIN'),
160
+
161
+ /*
162
+ |--------------------------------------------------------------------------
163
+ | HTTPS Only Cookies
164
+ |--------------------------------------------------------------------------
165
+ |
166
+ | By setting this option to true, session cookies will only be sent back
167
+ | to the server if the browser has a HTTPS connection. This will keep
168
+ | the cookie from being sent to you when it can't be done securely.
169
+ |
170
+ */
171
+
172
+ 'secure' => env('SESSION_SECURE_COOKIE'),
173
+
174
+ /*
175
+ |--------------------------------------------------------------------------
176
+ | HTTP Access Only
177
+ |--------------------------------------------------------------------------
178
+ |
179
+ | Setting this value to true will prevent JavaScript from accessing the
180
+ | value of the cookie and the cookie will only be accessible through
181
+ | the HTTP protocol. It's unlikely you should disable this option.
182
+ |
183
+ */
184
+
185
+ 'http_only' => env('SESSION_HTTP_ONLY', true),
186
+
187
+ /*
188
+ |--------------------------------------------------------------------------
189
+ | Same-Site Cookies
190
+ |--------------------------------------------------------------------------
191
+ |
192
+ | This option determines how your cookies behave when cross-site requests
193
+ | take place, and can be used to mitigate CSRF attacks. By default, we
194
+ | will set this value to "lax" to permit secure cross-site requests.
195
+ |
196
+ | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
197
+ |
198
+ | Supported: "lax", "strict", "none", null
199
+ |
200
+ */
201
+
202
+ 'same_site' => env('SESSION_SAME_SITE', 'lax'),
203
+
204
+ /*
205
+ |--------------------------------------------------------------------------
206
+ | Partitioned Cookies
207
+ |--------------------------------------------------------------------------
208
+ |
209
+ | Setting this value to true will tie the cookie to the top-level site for
210
+ | a cross-site context. Partitioned cookies are accepted by the browser
211
+ | when flagged "secure" and the Same-Site attribute is set to "none".
212
+ |
213
+ */
214
+
215
+ 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
216
+
217
+ ];
laravel-sample/database/.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ *.sqlite*
laravel-sample/database/factories/UserFactory.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Database\Factories;
4
+
5
+ use Illuminate\Database\Eloquent\Factories\Factory;
6
+ use Illuminate\Support\Facades\Hash;
7
+ use Illuminate\Support\Str;
8
+
9
+ /**
10
+ * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
11
+ */
12
+ class UserFactory extends Factory
13
+ {
14
+ /**
15
+ * The current password being used by the factory.
16
+ */
17
+ protected static ?string $password;
18
+
19
+ /**
20
+ * Define the model's default state.
21
+ *
22
+ * @return array<string, mixed>
23
+ */
24
+ public function definition(): array
25
+ {
26
+ return [
27
+ 'name' => fake()->name(),
28
+ 'email' => fake()->unique()->safeEmail(),
29
+ 'email_verified_at' => now(),
30
+ 'password' => static::$password ??= Hash::make('password'),
31
+ 'remember_token' => Str::random(10),
32
+ ];
33
+ }
34
+
35
+ /**
36
+ * Indicate that the model's email address should be unverified.
37
+ */
38
+ public function unverified(): static
39
+ {
40
+ return $this->state(fn (array $attributes) => [
41
+ 'email_verified_at' => null,
42
+ ]);
43
+ }
44
+ }
laravel-sample/database/migrations/0001_01_01_000000_create_users_table.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Database\Migrations\Migration;
4
+ use Illuminate\Database\Schema\Blueprint;
5
+ use Illuminate\Support\Facades\Schema;
6
+
7
+ return new class extends Migration
8
+ {
9
+ /**
10
+ * Run the migrations.
11
+ */
12
+ public function up(): void
13
+ {
14
+ Schema::create('users', function (Blueprint $table) {
15
+ $table->id();
16
+ $table->string('name');
17
+ $table->string('email')->unique();
18
+ $table->timestamp('email_verified_at')->nullable();
19
+ $table->string('password');
20
+ $table->rememberToken();
21
+ $table->timestamps();
22
+ });
23
+
24
+ Schema::create('password_reset_tokens', function (Blueprint $table) {
25
+ $table->string('email')->primary();
26
+ $table->string('token');
27
+ $table->timestamp('created_at')->nullable();
28
+ });
29
+
30
+ Schema::create('sessions', function (Blueprint $table) {
31
+ $table->string('id')->primary();
32
+ $table->foreignId('user_id')->nullable()->index();
33
+ $table->string('ip_address', 45)->nullable();
34
+ $table->text('user_agent')->nullable();
35
+ $table->longText('payload');
36
+ $table->integer('last_activity')->index();
37
+ });
38
+ }
39
+
40
+ /**
41
+ * Reverse the migrations.
42
+ */
43
+ public function down(): void
44
+ {
45
+ Schema::dropIfExists('users');
46
+ Schema::dropIfExists('password_reset_tokens');
47
+ Schema::dropIfExists('sessions');
48
+ }
49
+ };
laravel-sample/database/migrations/0001_01_01_000001_create_cache_table.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Database\Migrations\Migration;
4
+ use Illuminate\Database\Schema\Blueprint;
5
+ use Illuminate\Support\Facades\Schema;
6
+
7
+ return new class extends Migration
8
+ {
9
+ /**
10
+ * Run the migrations.
11
+ */
12
+ public function up(): void
13
+ {
14
+ Schema::create('cache', function (Blueprint $table) {
15
+ $table->string('key')->primary();
16
+ $table->mediumText('value');
17
+ $table->integer('expiration');
18
+ });
19
+
20
+ Schema::create('cache_locks', function (Blueprint $table) {
21
+ $table->string('key')->primary();
22
+ $table->string('owner');
23
+ $table->integer('expiration');
24
+ });
25
+ }
26
+
27
+ /**
28
+ * Reverse the migrations.
29
+ */
30
+ public function down(): void
31
+ {
32
+ Schema::dropIfExists('cache');
33
+ Schema::dropIfExists('cache_locks');
34
+ }
35
+ };
laravel-sample/database/migrations/0001_01_01_000002_create_jobs_table.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Database\Migrations\Migration;
4
+ use Illuminate\Database\Schema\Blueprint;
5
+ use Illuminate\Support\Facades\Schema;
6
+
7
+ return new class extends Migration
8
+ {
9
+ /**
10
+ * Run the migrations.
11
+ */
12
+ public function up(): void
13
+ {
14
+ Schema::create('jobs', function (Blueprint $table) {
15
+ $table->id();
16
+ $table->string('queue')->index();
17
+ $table->longText('payload');
18
+ $table->unsignedTinyInteger('attempts');
19
+ $table->unsignedInteger('reserved_at')->nullable();
20
+ $table->unsignedInteger('available_at');
21
+ $table->unsignedInteger('created_at');
22
+ });
23
+
24
+ Schema::create('job_batches', function (Blueprint $table) {
25
+ $table->string('id')->primary();
26
+ $table->string('name');
27
+ $table->integer('total_jobs');
28
+ $table->integer('pending_jobs');
29
+ $table->integer('failed_jobs');
30
+ $table->longText('failed_job_ids');
31
+ $table->mediumText('options')->nullable();
32
+ $table->integer('cancelled_at')->nullable();
33
+ $table->integer('created_at');
34
+ $table->integer('finished_at')->nullable();
35
+ });
36
+
37
+ Schema::create('failed_jobs', function (Blueprint $table) {
38
+ $table->id();
39
+ $table->string('uuid')->unique();
40
+ $table->text('connection');
41
+ $table->text('queue');
42
+ $table->longText('payload');
43
+ $table->longText('exception');
44
+ $table->timestamp('failed_at')->useCurrent();
45
+ });
46
+ }
47
+
48
+ /**
49
+ * Reverse the migrations.
50
+ */
51
+ public function down(): void
52
+ {
53
+ Schema::dropIfExists('jobs');
54
+ Schema::dropIfExists('job_batches');
55
+ Schema::dropIfExists('failed_jobs');
56
+ }
57
+ };
laravel-sample/database/seeders/DatabaseSeeder.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Database\Seeders;
4
+
5
+ use App\Models\User;
6
+ // use Illuminate\Database\Console\Seeds\WithoutModelEvents;
7
+ use Illuminate\Database\Seeder;
8
+
9
+ class DatabaseSeeder extends Seeder
10
+ {
11
+ /**
12
+ * Seed the application's database.
13
+ */
14
+ public function run(): void
15
+ {
16
+ // User::factory(10)->create();
17
+
18
+ User::factory()->create([
19
+ 'name' => 'Test User',
20
+ 'email' => 'test@example.com',
21
+ ]);
22
+ }
23
+ }
laravel-sample/package.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "private": true,
4
+ "type": "module",
5
+ "scripts": {
6
+ "build": "vite build",
7
+ "dev": "vite"
8
+ },
9
+ "devDependencies": {
10
+ "@tailwindcss/vite": "^4.0.0",
11
+ "axios": "^1.8.2",
12
+ "concurrently": "^9.0.1",
13
+ "laravel-vite-plugin": "^1.2.0",
14
+ "tailwindcss": "^4.0.0",
15
+ "vite": "^6.2.4"
16
+ }
17
+ }
laravel-sample/phpunit.xml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4
+ bootstrap="vendor/autoload.php"
5
+ colors="true"
6
+ >
7
+ <testsuites>
8
+ <testsuite name="Unit">
9
+ <directory>tests/Unit</directory>
10
+ </testsuite>
11
+ <testsuite name="Feature">
12
+ <directory>tests/Feature</directory>
13
+ </testsuite>
14
+ </testsuites>
15
+ <source>
16
+ <include>
17
+ <directory>app</directory>
18
+ </include>
19
+ </source>
20
+ <php>
21
+ <env name="APP_ENV" value="testing"/>
22
+ <env name="APP_MAINTENANCE_DRIVER" value="file"/>
23
+ <env name="BCRYPT_ROUNDS" value="4"/>
24
+ <env name="CACHE_STORE" value="array"/>
25
+ <env name="DB_CONNECTION" value="sqlite"/>
26
+ <env name="DB_DATABASE" value=":memory:"/>
27
+ <env name="MAIL_MAILER" value="array"/>
28
+ <env name="PULSE_ENABLED" value="false"/>
29
+ <env name="QUEUE_CONNECTION" value="sync"/>
30
+ <env name="SESSION_DRIVER" value="array"/>
31
+ <env name="TELESCOPE_ENABLED" value="false"/>
32
+ </php>
33
+ </phpunit>
laravel-sample/public/.htaccess ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <IfModule mod_rewrite.c>
2
+ <IfModule mod_negotiation.c>
3
+ Options -MultiViews -Indexes
4
+ </IfModule>
5
+
6
+ RewriteEngine On
7
+
8
+ # Handle Authorization Header
9
+ RewriteCond %{HTTP:Authorization} .
10
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
11
+
12
+ # Handle X-XSRF-Token Header
13
+ RewriteCond %{HTTP:x-xsrf-token} .
14
+ RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
15
+
16
+ # Redirect Trailing Slashes If Not A Folder...
17
+ RewriteCond %{REQUEST_FILENAME} !-d
18
+ RewriteCond %{REQUEST_URI} (.+)/$
19
+ RewriteRule ^ %1 [L,R=301]
20
+
21
+ # Send Requests To Front Controller...
22
+ RewriteCond %{REQUEST_FILENAME} !-d
23
+ RewriteCond %{REQUEST_FILENAME} !-f
24
+ RewriteRule ^ index.php [L]
25
+ </IfModule>
laravel-sample/public/favicon.ico ADDED
laravel-sample/public/index.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Foundation\Application;
4
+ use Illuminate\Http\Request;
5
+
6
+ define('LARAVEL_START', microtime(true));
7
+
8
+ // Determine if the application is in maintenance mode...
9
+ if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
10
+ require $maintenance;
11
+ }
12
+
13
+ // Register the Composer autoloader...
14
+ require __DIR__.'/../vendor/autoload.php';
15
+
16
+ // Bootstrap Laravel and handle the request...
17
+ /** @var Application $app */
18
+ $app = require_once __DIR__.'/../bootstrap/app.php';
19
+
20
+ $app->handleRequest(Request::capture());
laravel-sample/public/robots.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ User-agent: *
2
+ Disallow:
laravel-sample/resources/css/app.css ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import 'tailwindcss';
2
+
3
+ @source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
4
+ @source '../../storage/framework/views/*.php';
5
+ @source '../**/*.blade.php';
6
+ @source '../**/*.js';
7
+
8
+ @theme {
9
+ --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
10
+ 'Segoe UI Symbol', 'Noto Color Emoji';
11
+ }
laravel-sample/resources/js/app.js ADDED
@@ -0,0 +1 @@
 
 
1
+ import './bootstrap';
laravel-sample/resources/js/bootstrap.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import axios from 'axios';
2
+ window.axios = axios;
3
+
4
+ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
laravel-sample/resources/views/welcome.blade.php ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+
7
+ <title>Laravel</title>
8
+
9
+ <!-- Fonts -->
10
+ <link rel="preconnect" href="https://fonts.bunny.net">
11
+ <link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
12
+
13
+ <!-- Styles / Scripts -->
14
+ @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
15
+ @vite(['resources/css/app.css', 'resources/js/app.js'])
16
+ @else
17
+ <style>
18
+ /*! tailwindcss v4.0.7 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-sans:'Instrument Sans',ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-serif:ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(.971 .013 17.38);--color-red-100:oklch(.936 .032 17.717);--color-red-200:oklch(.885 .062 18.334);--color-red-300:oklch(.808 .114 19.571);--color-red-400:oklch(.704 .191 22.216);--color-red-500:oklch(.637 .237 25.331);--color-red-600:oklch(.577 .245 27.325);--color-red-700:oklch(.505 .213 27.518);--color-red-800:oklch(.444 .177 26.899);--color-red-900:oklch(.396 .141 25.723);--color-red-950:oklch(.258 .092 26.042);--color-orange-50:oklch(.98 .016 73.684);--color-orange-100:oklch(.954 .038 75.164);--color-orange-200:oklch(.901 .076 70.697);--color-orange-300:oklch(.837 .128 66.29);--color-orange-400:oklch(.75 .183 55.934);--color-orange-500:oklch(.705 .213 47.604);--color-orange-600:oklch(.646 .222 41.116);--color-orange-700:oklch(.553 .195 38.402);--color-orange-800:oklch(.47 .157 37.304);--color-orange-900:oklch(.408 .123 38.172);--color-orange-950:oklch(.266 .079 36.259);--color-amber-50:oklch(.987 .022 95.277);--color-amber-100:oklch(.962 .059 95.617);--color-amber-200:oklch(.924 .12 95.746);--color-amber-300:oklch(.879 .169 91.605);--color-amber-400:oklch(.828 .189 84.429);--color-amber-500:oklch(.769 .188 70.08);--color-amber-600:oklch(.666 .179 58.318);--color-amber-700:oklch(.555 .163 48.998);--color-amber-800:oklch(.473 .137 46.201);--color-amber-900:oklch(.414 .112 45.904);--color-amber-950:oklch(.279 .077 45.635);--color-yellow-50:oklch(.987 .026 102.212);--color-yellow-100:oklch(.973 .071 103.193);--color-yellow-200:oklch(.945 .129 101.54);--color-yellow-300:oklch(.905 .182 98.111);--color-yellow-400:oklch(.852 .199 91.936);--color-yellow-500:oklch(.795 .184 86.047);--color-yellow-600:oklch(.681 .162 75.834);--color-yellow-700:oklch(.554 .135 66.442);--color-yellow-800:oklch(.476 .114 61.907);--color-yellow-900:oklch(.421 .095 57.708);--color-yellow-950:oklch(.286 .066 53.813);--color-lime-50:oklch(.986 .031 120.757);--color-lime-100:oklch(.967 .067 122.328);--color-lime-200:oklch(.938 .127 124.321);--color-lime-300:oklch(.897 .196 126.665);--color-lime-400:oklch(.841 .238 128.85);--color-lime-500:oklch(.768 .233 130.85);--color-lime-600:oklch(.648 .2 131.684);--color-lime-700:oklch(.532 .157 131.589);--color-lime-800:oklch(.453 .124 130.933);--color-lime-900:oklch(.405 .101 131.063);--color-lime-950:oklch(.274 .072 132.109);--color-green-50:oklch(.982 .018 155.826);--color-green-100:oklch(.962 .044 156.743);--color-green-200:oklch(.925 .084 155.995);--color-green-300:oklch(.871 .15 154.449);--color-green-400:oklch(.792 .209 151.711);--color-green-500:oklch(.723 .219 149.579);--color-green-600:oklch(.627 .194 149.214);--color-green-700:oklch(.527 .154 150.069);--color-green-800:oklch(.448 .119 151.328);--color-green-900:oklch(.393 .095 152.535);--color-green-950:oklch(.266 .065 152.934);--color-emerald-50:oklch(.979 .021 166.113);--color-emerald-100:oklch(.95 .052 163.051);--color-emerald-200:oklch(.905 .093 164.15);--color-emerald-300:oklch(.845 .143 164.978);--color-emerald-400:oklch(.765 .177 163.223);--color-emerald-500:oklch(.696 .17 162.48);--color-emerald-600:oklch(.596 .145 163.225);--color-emerald-700:oklch(.508 .118 165.612);--color-emerald-800:oklch(.432 .095 166.913);--color-emerald-900:oklch(.378 .077 168.94);--color-emerald-950:oklch(.262 .051 172.552);--color-teal-50:oklch(.984 .014 180.72);--color-teal-100:oklch(.953 .051 180.801);--color-teal-200:oklch(.91 .096 180.426);--color-teal-300:oklch(.855 .138 181.071);--color-teal-400:oklch(.777 .152 181.912);--color-teal-500:oklch(.704 .14 182.503);--color-teal-600:oklch(.6 .118 184.704);--color-teal-700:oklch(.511 .096 186.391);--color-teal-800:oklch(.437 .078 188.216);--color-teal-900:oklch(.386 .063 188.416);--color-teal-950:oklch(.277 .046 192.524);--color-cyan-50:oklch(.984 .019 200.873);--color-cyan-100:oklch(.956 .045 203.388);--color-cyan-200:oklch(.917 .08 205.041);--color-cyan-300:oklch(.865 .127 207.078);--color-cyan-400:oklch(.789 .154 211.53);--color-cyan-500:oklch(.715 .143 215.221);--color-cyan-600:oklch(.609 .126 221.723);--color-cyan-700:oklch(.52 .105 223.128);--color-cyan-800:oklch(.45 .085 224.283);--color-cyan-900:oklch(.398 .07 227.392);--color-cyan-950:oklch(.302 .056 229.695);--color-sky-50:oklch(.977 .013 236.62);--color-sky-100:oklch(.951 .026 236.824);--color-sky-200:oklch(.901 .058 230.902);--color-sky-300:oklch(.828 .111 230.318);--color-sky-400:oklch(.746 .16 232.661);--color-sky-500:oklch(.685 .169 237.323);--color-sky-600:oklch(.588 .158 241.966);--color-sky-700:oklch(.5 .134 242.749);--color-sky-800:oklch(.443 .11 240.79);--color-sky-900:oklch(.391 .09 240.876);--color-sky-950:oklch(.293 .066 243.157);--color-blue-50:oklch(.97 .014 254.604);--color-blue-100:oklch(.932 .032 255.585);--color-blue-200:oklch(.882 .059 254.128);--color-blue-300:oklch(.809 .105 251.813);--color-blue-400:oklch(.707 .165 254.624);--color-blue-500:oklch(.623 .214 259.815);--color-blue-600:oklch(.546 .245 262.881);--color-blue-700:oklch(.488 .243 264.376);--color-blue-800:oklch(.424 .199 265.638);--color-blue-900:oklch(.379 .146 265.522);--color-blue-950:oklch(.282 .091 267.935);--color-indigo-50:oklch(.962 .018 272.314);--color-indigo-100:oklch(.93 .034 272.788);--color-indigo-200:oklch(.87 .065 274.039);--color-indigo-300:oklch(.785 .115 274.713);--color-indigo-400:oklch(.673 .182 276.935);--color-indigo-500:oklch(.585 .233 277.117);--color-indigo-600:oklch(.511 .262 276.966);--color-indigo-700:oklch(.457 .24 277.023);--color-indigo-800:oklch(.398 .195 277.366);--color-indigo-900:oklch(.359 .144 278.697);--color-indigo-950:oklch(.257 .09 281.288);--color-violet-50:oklch(.969 .016 293.756);--color-violet-100:oklch(.943 .029 294.588);--color-violet-200:oklch(.894 .057 293.283);--color-violet-300:oklch(.811 .111 293.571);--color-violet-400:oklch(.702 .183 293.541);--color-violet-500:oklch(.606 .25 292.717);--color-violet-600:oklch(.541 .281 293.009);--color-violet-700:oklch(.491 .27 292.581);--color-violet-800:oklch(.432 .232 292.759);--color-violet-900:oklch(.38 .189 293.745);--color-violet-950:oklch(.283 .141 291.089);--color-purple-50:oklch(.977 .014 308.299);--color-purple-100:oklch(.946 .033 307.174);--color-purple-200:oklch(.902 .063 306.703);--color-purple-300:oklch(.827 .119 306.383);--color-purple-400:oklch(.714 .203 305.504);--color-purple-500:oklch(.627 .265 303.9);--color-purple-600:oklch(.558 .288 302.321);--color-purple-700:oklch(.496 .265 301.924);--color-purple-800:oklch(.438 .218 303.724);--color-purple-900:oklch(.381 .176 304.987);--color-purple-950:oklch(.291 .149 302.717);--color-fuchsia-50:oklch(.977 .017 320.058);--color-fuchsia-100:oklch(.952 .037 318.852);--color-fuchsia-200:oklch(.903 .076 319.62);--color-fuchsia-300:oklch(.833 .145 321.434);--color-fuchsia-400:oklch(.74 .238 322.16);--color-fuchsia-500:oklch(.667 .295 322.15);--color-fuchsia-600:oklch(.591 .293 322.896);--color-fuchsia-700:oklch(.518 .253 323.949);--color-fuchsia-800:oklch(.452 .211 324.591);--color-fuchsia-900:oklch(.401 .17 325.612);--color-fuchsia-950:oklch(.293 .136 325.661);--color-pink-50:oklch(.971 .014 343.198);--color-pink-100:oklch(.948 .028 342.258);--color-pink-200:oklch(.899 .061 343.231);--color-pink-300:oklch(.823 .12 346.018);--color-pink-400:oklch(.718 .202 349.761);--color-pink-500:oklch(.656 .241 354.308);--color-pink-600:oklch(.592 .249 .584);--color-pink-700:oklch(.525 .223 3.958);--color-pink-800:oklch(.459 .187 3.815);--color-pink-900:oklch(.408 .153 2.432);--color-pink-950:oklch(.284 .109 3.907);--color-rose-50:oklch(.969 .015 12.422);--color-rose-100:oklch(.941 .03 12.58);--color-rose-200:oklch(.892 .058 10.001);--color-rose-300:oklch(.81 .117 11.638);--color-rose-400:oklch(.712 .194 13.428);--color-rose-500:oklch(.645 .246 16.439);--color-rose-600:oklch(.586 .253 17.585);--color-rose-700:oklch(.514 .222 16.935);--color-rose-800:oklch(.455 .188 13.697);--color-rose-900:oklch(.41 .159 10.272);--color-rose-950:oklch(.271 .105 12.094);--color-slate-50:oklch(.984 .003 247.858);--color-slate-100:oklch(.968 .007 247.896);--color-slate-200:oklch(.929 .013 255.508);--color-slate-300:oklch(.869 .022 252.894);--color-slate-400:oklch(.704 .04 256.788);--color-slate-500:oklch(.554 .046 257.417);--color-slate-600:oklch(.446 .043 257.281);--color-slate-700:oklch(.372 .044 257.287);--color-slate-800:oklch(.279 .041 260.031);--color-slate-900:oklch(.208 .042 265.755);--color-slate-950:oklch(.129 .042 264.695);--color-gray-50:oklch(.985 .002 247.839);--color-gray-100:oklch(.967 .003 264.542);--color-gray-200:oklch(.928 .006 264.531);--color-gray-300:oklch(.872 .01 258.338);--color-gray-400:oklch(.707 .022 261.325);--color-gray-500:oklch(.551 .027 264.364);--color-gray-600:oklch(.446 .03 256.802);--color-gray-700:oklch(.373 .034 259.733);--color-gray-800:oklch(.278 .033 256.848);--color-gray-900:oklch(.21 .034 264.665);--color-gray-950:oklch(.13 .028 261.692);--color-zinc-50:oklch(.985 0 0);--color-zinc-100:oklch(.967 .001 286.375);--color-zinc-200:oklch(.92 .004 286.32);--color-zinc-300:oklch(.871 .006 286.286);--color-zinc-400:oklch(.705 .015 286.067);--color-zinc-500:oklch(.552 .016 285.938);--color-zinc-600:oklch(.442 .017 285.786);--color-zinc-700:oklch(.37 .013 285.805);--color-zinc-800:oklch(.274 .006 286.033);--color-zinc-900:oklch(.21 .006 285.885);--color-zinc-950:oklch(.141 .005 285.823);--color-neutral-50:oklch(.985 0 0);--color-neutral-100:oklch(.97 0 0);--color-neutral-200:oklch(.922 0 0);--color-neutral-300:oklch(.87 0 0);--color-neutral-400:oklch(.708 0 0);--color-neutral-500:oklch(.556 0 0);--color-neutral-600:oklch(.439 0 0);--color-neutral-700:oklch(.371 0 0);--color-neutral-800:oklch(.269 0 0);--color-neutral-900:oklch(.205 0 0);--color-neutral-950:oklch(.145 0 0);--color-stone-50:oklch(.985 .001 106.423);--color-stone-100:oklch(.97 .001 106.424);--color-stone-200:oklch(.923 .003 48.717);--color-stone-300:oklch(.869 .005 56.366);--color-stone-400:oklch(.709 .01 56.259);--color-stone-500:oklch(.553 .013 58.071);--color-stone-600:oklch(.444 .011 73.639);--color-stone-700:oklch(.374 .01 67.558);--color-stone-800:oklch(.268 .007 34.298);--color-stone-900:oklch(.216 .006 56.043);--color-stone-950:oklch(.147 .004 49.25);--color-black:#000;--color-white:#fff;--spacing:.25rem;--breakpoint-sm:40rem;--breakpoint-md:48rem;--breakpoint-lg:64rem;--breakpoint-xl:80rem;--breakpoint-2xl:96rem;--container-3xs:16rem;--container-2xs:18rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--radius-xs:.125rem;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--radius-4xl:2rem;--shadow-2xs:0 1px #0000000d;--shadow-xs:0 1px 2px 0 #0000000d;--shadow-sm:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--shadow-xl:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;--shadow-2xl:0 25px 50px -12px #00000040;--inset-shadow-2xs:inset 0 1px #0000000d;--inset-shadow-xs:inset 0 1px 1px #0000000d;--inset-shadow-sm:inset 0 2px 4px #0000000d;--drop-shadow-xs:0 1px 1px #0000000d;--drop-shadow-sm:0 1px 2px #00000026;--drop-shadow-md:0 3px 3px #0000001f;--drop-shadow-lg:0 4px 4px #00000026;--drop-shadow-xl:0 9px 7px #0000001a;--drop-shadow-2xl:0 25px 25px #00000026;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-ping:ping 1s cubic-bezier(0,0,.2,1)infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--animate-bounce:bounce 1s infinite;--blur-xs:4px;--blur-sm:8px;--blur-md:12px;--blur-lg:16px;--blur-xl:24px;--blur-2xl:40px;--blur-3xl:64px;--perspective-dramatic:100px;--perspective-near:300px;--perspective-normal:500px;--perspective-midrange:800px;--perspective-distant:1200px;--aspect-video:16/9;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-font-feature-settings:var(--font-sans--font-feature-settings);--default-font-variation-settings:var(--font-sans--font-variation-settings);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(--font-mono--font-feature-settings);--default-mono-font-variation-settings:var(--font-mono--font-variation-settings)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.absolute{position:absolute}.relative{position:relative}.static{position:static}.inset-0{inset:calc(var(--spacing)*0)}.-mt-\[4\.9rem\]{margin-top:-4.9rem}.-mb-px{margin-bottom:-1px}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.-ml-8{margin-left:calc(var(--spacing)*-8)}.flex{display:flex}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.aspect-\[335\/376\]{aspect-ratio:335/376}.h-1{height:calc(var(--spacing)*1)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-14{height:calc(var(--spacing)*14)}.h-14\.5{height:calc(var(--spacing)*14.5)}.min-h-screen{min-height:100vh}.w-1{width:calc(var(--spacing)*1)}.w-1\.5{width:calc(var(--spacing)*1.5)}.w-2{width:calc(var(--spacing)*2)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-\[448px\]{width:448px}.w-full{width:100%}.max-w-\[335px\]{max-width:335px}.max-w-none{max-width:none}.flex-1{flex:1}.shrink-0{flex-shrink:0}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-center{align-items:center}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}:where(.space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.rounded-full{border-radius:3.40282e38px}.rounded-sm{border-radius:var(--radius-sm)}.rounded-t-lg{border-top-left-radius:var(--radius-lg);border-top-right-radius:var(--radius-lg)}.rounded-br-lg{border-bottom-right-radius:var(--radius-lg)}.rounded-bl-lg{border-bottom-left-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-\[\#19140035\]{border-color:#19140035}.border-\[\#e3e3e0\]{border-color:#e3e3e0}.border-black{border-color:var(--color-black)}.border-transparent{border-color:#0000}.bg-\[\#1b1b18\]{background-color:#1b1b18}.bg-\[\#FDFDFC\]{background-color:#fdfdfc}.bg-\[\#dbdbd7\]{background-color:#dbdbd7}.bg-\[\#fff2f2\]{background-color:#fff2f2}.bg-white{background-color:var(--color-white)}.p-6{padding:calc(var(--spacing)*6)}.px-5{padding-inline:calc(var(--spacing)*5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.pb-12{padding-bottom:calc(var(--spacing)*12)}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-\[13px\]{font-size:13px}.leading-\[20px\]{--tw-leading:20px;line-height:20px}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.text-\[\#1b1b18\]{color:#1b1b18}.text-\[\#706f6c\]{color:#706f6c}.text-\[\#F53003\],.text-\[\#f53003\]{color:#f53003}.text-white{color:var(--color-white)}.underline{text-decoration-line:underline}.underline-offset-4{text-underline-offset:4px}.opacity-100{opacity:1}.shadow-\[0px_0px_1px_0px_rgba\(0\,0\,0\,0\.03\)\,0px_1px_2px_0px_rgba\(0\,0\,0\,0\.06\)\]{--tw-shadow:0px 0px 1px 0px var(--tw-shadow-color,#00000008),0px 1px 2px 0px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0px_0px_0px_1px_rgba\(26\,26\,0\,0\.16\)\]{--tw-shadow:inset 0px 0px 0px 1px var(--tw-shadow-color,#1a1a0029);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.\!filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)!important}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.delay-300{transition-delay:.3s}.duration-750{--tw-duration:.75s;transition-duration:.75s}.not-has-\[nav\]\:hidden:not(:has(:is(nav))){display:none}.before\:absolute:before{content:var(--tw-content);position:absolute}.before\:top-0:before{content:var(--tw-content);top:calc(var(--spacing)*0)}.before\:top-1\/2:before{content:var(--tw-content);top:50%}.before\:bottom-0:before{content:var(--tw-content);bottom:calc(var(--spacing)*0)}.before\:bottom-1\/2:before{content:var(--tw-content);bottom:50%}.before\:left-\[0\.4rem\]:before{content:var(--tw-content);left:.4rem}.before\:border-l:before{content:var(--tw-content);border-left-style:var(--tw-border-style);border-left-width:1px}.before\:border-\[\#e3e3e0\]:before{content:var(--tw-content);border-color:#e3e3e0}@media (hover:hover){.hover\:border-\[\#1915014a\]:hover{border-color:#1915014a}.hover\:border-\[\#19140035\]:hover{border-color:#19140035}.hover\:border-black:hover{border-color:var(--color-black)}.hover\:bg-black:hover{background-color:var(--color-black)}}@media (width>=64rem){.lg\:-mt-\[6\.6rem\]{margin-top:-6.6rem}.lg\:mb-0{margin-bottom:calc(var(--spacing)*0)}.lg\:mb-6{margin-bottom:calc(var(--spacing)*6)}.lg\:-ml-px{margin-left:-1px}.lg\:ml-0{margin-left:calc(var(--spacing)*0)}.lg\:block{display:block}.lg\:aspect-auto{aspect-ratio:auto}.lg\:w-\[438px\]{width:438px}.lg\:max-w-4xl{max-width:var(--container-4xl)}.lg\:grow{flex-grow:1}.lg\:flex-row{flex-direction:row}.lg\:justify-center{justify-content:center}.lg\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.lg\:rounded-tl-lg{border-top-left-radius:var(--radius-lg)}.lg\:rounded-r-lg{border-top-right-radius:var(--radius-lg);border-bottom-right-radius:var(--radius-lg)}.lg\:rounded-br-none{border-bottom-right-radius:0}.lg\:p-8{padding:calc(var(--spacing)*8)}.lg\:p-20{padding:calc(var(--spacing)*20)}}@media (prefers-color-scheme:dark){.dark\:block{display:block}.dark\:hidden{display:none}.dark\:border-\[\#3E3E3A\]{border-color:#3e3e3a}.dark\:border-\[\#eeeeec\]{border-color:#eeeeec}.dark\:bg-\[\#0a0a0a\]{background-color:#0a0a0a}.dark\:bg-\[\#1D0002\]{background-color:#1d0002}.dark\:bg-\[\#3E3E3A\]{background-color:#3e3e3a}.dark\:bg-\[\#161615\]{background-color:#161615}.dark\:bg-\[\#eeeeec\]{background-color:#eeeeec}.dark\:text-\[\#1C1C1A\]{color:#1c1c1a}.dark\:text-\[\#A1A09A\]{color:#a1a09a}.dark\:text-\[\#EDEDEC\]{color:#ededec}.dark\:text-\[\#F61500\]{color:#f61500}.dark\:text-\[\#FF4433\]{color:#f43}.dark\:shadow-\[inset_0px_0px_0px_1px_\#fffaed2d\]{--tw-shadow:inset 0px 0px 0px 1px var(--tw-shadow-color,#fffaed2d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:before\:border-\[\#3E3E3A\]:before{content:var(--tw-content);border-color:#3e3e3a}@media (hover:hover){.dark\:hover\:border-\[\#3E3E3A\]:hover{border-color:#3e3e3a}.dark\:hover\:border-\[\#62605b\]:hover{border-color:#62605b}.dark\:hover\:border-white:hover{border-color:var(--color-white)}.dark\:hover\:bg-white:hover{background-color:var(--color-white)}}}@starting-style{.starting\:translate-y-4{--tw-translate-y:calc(var(--spacing)*4);translate:var(--tw-translate-x)var(--tw-translate-y)}}@starting-style{.starting\:translate-y-6{--tw-translate-y:calc(var(--spacing)*6);translate:var(--tw-translate-x)var(--tw-translate-y)}}@starting-style{.starting\:opacity-0{opacity:0}}}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}
19
+ </style>
20
+ @endif
21
+ </head>
22
+ <body class="bg-[#FDFDFC] dark:bg-[#0a0a0a] text-[#1b1b18] flex p-6 lg:p-8 items-center lg:justify-center min-h-screen flex-col">
23
+ <header class="w-full lg:max-w-4xl max-w-[335px] text-sm mb-6 not-has-[nav]:hidden">
24
+ @if (Route::has('login'))
25
+ <nav class="flex items-center justify-end gap-4">
26
+ @auth
27
+ <a
28
+ href="{{ url('/dashboard') }}"
29
+ class="inline-block px-5 py-1.5 dark:text-[#EDEDEC] border-[#19140035] hover:border-[#1915014a] border text-[#1b1b18] dark:border-[#3E3E3A] dark:hover:border-[#62605b] rounded-sm text-sm leading-normal"
30
+ >
31
+ Dashboard
32
+ </a>
33
+ @else
34
+ <a
35
+ href="{{ route('login') }}"
36
+ class="inline-block px-5 py-1.5 dark:text-[#EDEDEC] text-[#1b1b18] border border-transparent hover:border-[#19140035] dark:hover:border-[#3E3E3A] rounded-sm text-sm leading-normal"
37
+ >
38
+ Log in
39
+ </a>
40
+
41
+ @if (Route::has('register'))
42
+ <a
43
+ href="{{ route('register') }}"
44
+ class="inline-block px-5 py-1.5 dark:text-[#EDEDEC] border-[#19140035] hover:border-[#1915014a] border text-[#1b1b18] dark:border-[#3E3E3A] dark:hover:border-[#62605b] rounded-sm text-sm leading-normal">
45
+ Register
46
+ </a>
47
+ @endif
48
+ @endauth
49
+ </nav>
50
+ @endif
51
+ </header>
52
+ <div class="flex items-center justify-center w-full transition-opacity opacity-100 duration-750 lg:grow starting:opacity-0">
53
+ <main class="flex max-w-[335px] w-full flex-col-reverse lg:max-w-4xl lg:flex-row">
54
+ <div class="text-[13px] leading-[20px] flex-1 p-6 pb-12 lg:p-20 bg-white dark:bg-[#161615] dark:text-[#EDEDEC] shadow-[inset_0px_0px_0px_1px_rgba(26,26,0,0.16)] dark:shadow-[inset_0px_0px_0px_1px_#fffaed2d] rounded-bl-lg rounded-br-lg lg:rounded-tl-lg lg:rounded-br-none">
55
+ <h1 class="mb-1 font-medium">Let's get started</h1>
56
+ <p class="mb-2 text-[#706f6c] dark:text-[#A1A09A]">Laravel has an incredibly rich ecosystem. <br>We suggest starting with the following.</p>
57
+ <ul class="flex flex-col mb-4 lg:mb-6">
58
+ <li class="flex items-center gap-4 py-2 relative before:border-l before:border-[#e3e3e0] dark:before:border-[#3E3E3A] before:top-1/2 before:bottom-0 before:left-[0.4rem] before:absolute">
59
+ <span class="relative py-1 bg-white dark:bg-[#161615]">
60
+ <span class="flex items-center justify-center rounded-full bg-[#FDFDFC] dark:bg-[#161615] shadow-[0px_0px_1px_0px_rgba(0,0,0,0.03),0px_1px_2px_0px_rgba(0,0,0,0.06)] w-3.5 h-3.5 border dark:border-[#3E3E3A] border-[#e3e3e0]">
61
+ <span class="rounded-full bg-[#dbdbd7] dark:bg-[#3E3E3A] w-1.5 h-1.5"></span>
62
+ </span>
63
+ </span>
64
+ <span>
65
+ Read the
66
+ <a href="https://laravel.com/docs" target="_blank" class="inline-flex items-center space-x-1 font-medium underline underline-offset-4 text-[#f53003] dark:text-[#FF4433] ml-1">
67
+ <span>Documentation</span>
68
+ <svg
69
+ width="10"
70
+ height="11"
71
+ viewBox="0 0 10 11"
72
+ fill="none"
73
+ xmlns="http://www.w3.org/2000/svg"
74
+ class="w-2.5 h-2.5"
75
+ >
76
+ <path
77
+ d="M7.70833 6.95834V2.79167H3.54167M2.5 8L7.5 3.00001"
78
+ stroke="currentColor"
79
+ stroke-linecap="square"
80
+ />
81
+ </svg>
82
+ </a>
83
+ </span>
84
+ </li>
85
+ <li class="flex items-center gap-4 py-2 relative before:border-l before:border-[#e3e3e0] dark:before:border-[#3E3E3A] before:bottom-1/2 before:top-0 before:left-[0.4rem] before:absolute">
86
+ <span class="relative py-1 bg-white dark:bg-[#161615]">
87
+ <span class="flex items-center justify-center rounded-full bg-[#FDFDFC] dark:bg-[#161615] shadow-[0px_0px_1px_0px_rgba(0,0,0,0.03),0px_1px_2px_0px_rgba(0,0,0,0.06)] w-3.5 h-3.5 border dark:border-[#3E3E3A] border-[#e3e3e0]">
88
+ <span class="rounded-full bg-[#dbdbd7] dark:bg-[#3E3E3A] w-1.5 h-1.5"></span>
89
+ </span>
90
+ </span>
91
+ <span>
92
+ Watch video tutorials at
93
+ <a href="https://laracasts.com" target="_blank" class="inline-flex items-center space-x-1 font-medium underline underline-offset-4 text-[#f53003] dark:text-[#FF4433] ml-1">
94
+ <span>Laracasts</span>
95
+ <svg
96
+ width="10"
97
+ height="11"
98
+ viewBox="0 0 10 11"
99
+ fill="none"
100
+ xmlns="http://www.w3.org/2000/svg"
101
+ class="w-2.5 h-2.5"
102
+ >
103
+ <path
104
+ d="M7.70833 6.95834V2.79167H3.54167M2.5 8L7.5 3.00001"
105
+ stroke="currentColor"
106
+ stroke-linecap="square"
107
+ />
108
+ </svg>
109
+ </a>
110
+ </span>
111
+ </li>
112
+ </ul>
113
+ <ul class="flex gap-3 text-sm leading-normal">
114
+ <li>
115
+ <a href="https://cloud.laravel.com" target="_blank" class="inline-block dark:bg-[#eeeeec] dark:border-[#eeeeec] dark:text-[#1C1C1A] dark:hover:bg-white dark:hover:border-white hover:bg-black hover:border-black px-5 py-1.5 bg-[#1b1b18] rounded-sm border border-black text-white text-sm leading-normal">
116
+ Deploy now
117
+ </a>
118
+ </li>
119
+ </ul>
120
+ </div>
121
+ <div class="bg-[#fff2f2] dark:bg-[#1D0002] relative lg:-ml-px -mb-px lg:mb-0 rounded-t-lg lg:rounded-t-none lg:rounded-r-lg aspect-[335/376] lg:aspect-auto w-full lg:w-[438px] shrink-0 overflow-hidden">
122
+ {{-- Laravel Logo --}}
123
+ <svg class="w-full text-[#F53003] dark:text-[#F61500] transition-all translate-y-0 opacity-100 max-w-none duration-750 starting:opacity-0 starting:translate-y-6" viewBox="0 0 438 104" fill="none" xmlns="http://www.w3.org/2000/svg">
124
+ <path d="M17.2036 -3H0V102.197H49.5189V86.7187H17.2036V-3Z" fill="currentColor" />
125
+ <path d="M110.256 41.6337C108.061 38.1275 104.945 35.3731 100.905 33.3681C96.8667 31.3647 92.8016 30.3618 88.7131 30.3618C83.4247 30.3618 78.5885 31.3389 74.201 33.2923C69.8111 35.2456 66.0474 37.928 62.9059 41.3333C59.7643 44.7401 57.3198 48.6726 55.5754 53.1293C53.8287 57.589 52.9572 62.274 52.9572 67.1813C52.9572 72.1925 53.8287 76.8995 55.5754 81.3069C57.3191 85.7173 59.7636 89.6241 62.9059 93.0293C66.0474 96.4361 69.8119 99.1155 74.201 101.069C78.5885 103.022 83.4247 103.999 88.7131 103.999C92.8016 103.999 96.8667 102.997 100.905 100.994C104.945 98.9911 108.061 96.2359 110.256 92.7282V102.195H126.563V32.1642H110.256V41.6337ZM108.76 75.7472C107.762 78.4531 106.366 80.8078 104.572 82.8112C102.776 84.8161 100.606 86.4183 98.0637 87.6206C95.5202 88.823 92.7004 89.4238 89.6103 89.4238C86.5178 89.4238 83.7252 88.823 81.2324 87.6206C78.7388 86.4183 76.5949 84.8161 74.7998 82.8112C73.004 80.8078 71.6319 78.4531 70.6856 75.7472C69.7356 73.0421 69.2644 70.1868 69.2644 67.1821C69.2644 64.1758 69.7356 61.3205 70.6856 58.6154C71.6319 55.9102 73.004 53.5571 74.7998 51.5522C76.5949 49.5495 78.738 47.9451 81.2324 46.7427C83.7252 45.5404 86.5178 44.9396 89.6103 44.9396C92.7012 44.9396 95.5202 45.5404 98.0637 46.7427C100.606 47.9451 102.776 49.5487 104.572 51.5522C106.367 53.5571 107.762 55.9102 108.76 58.6154C109.756 61.3205 110.256 64.1758 110.256 67.1821C110.256 70.1868 109.756 73.0421 108.76 75.7472Z" fill="currentColor" />
126
+ <path d="M242.805 41.6337C240.611 38.1275 237.494 35.3731 233.455 33.3681C229.416 31.3647 225.351 30.3618 221.262 30.3618C215.974 30.3618 211.138 31.3389 206.75 33.2923C202.36 35.2456 198.597 37.928 195.455 41.3333C192.314 44.7401 189.869 48.6726 188.125 53.1293C186.378 57.589 185.507 62.274 185.507 67.1813C185.507 72.1925 186.378 76.8995 188.125 81.3069C189.868 85.7173 192.313 89.6241 195.455 93.0293C198.597 96.4361 202.361 99.1155 206.75 101.069C211.138 103.022 215.974 103.999 221.262 103.999C225.351 103.999 229.416 102.997 233.455 100.994C237.494 98.9911 240.611 96.2359 242.805 92.7282V102.195H259.112V32.1642H242.805V41.6337ZM241.31 75.7472C240.312 78.4531 238.916 80.8078 237.122 82.8112C235.326 84.8161 233.156 86.4183 230.614 87.6206C228.07 88.823 225.251 89.4238 222.16 89.4238C219.068 89.4238 216.275 88.823 213.782 87.6206C211.289 86.4183 209.145 84.8161 207.35 82.8112C205.554 80.8078 204.182 78.4531 203.236 75.7472C202.286 73.0421 201.814 70.1868 201.814 67.1821C201.814 64.1758 202.286 61.3205 203.236 58.6154C204.182 55.9102 205.554 53.5571 207.35 51.5522C209.145 49.5495 211.288 47.9451 213.782 46.7427C216.275 45.5404 219.068 44.9396 222.16 44.9396C225.251 44.9396 228.07 45.5404 230.614 46.7427C233.156 47.9451 235.326 49.5487 237.122 51.5522C238.917 53.5571 240.312 55.9102 241.31 58.6154C242.306 61.3205 242.806 64.1758 242.806 67.1821C242.805 70.1868 242.305 73.0421 241.31 75.7472Z" fill="currentColor" />
127
+ <path d="M438 -3H421.694V102.197H438V-3Z" fill="currentColor" />
128
+ <path d="M139.43 102.197H155.735V48.2834H183.712V32.1665H139.43V102.197Z" fill="currentColor" />
129
+ <path d="M324.49 32.1665L303.995 85.794L283.498 32.1665H266.983L293.748 102.197H314.242L341.006 32.1665H324.49Z" fill="currentColor" />
130
+ <path d="M376.571 30.3656C356.603 30.3656 340.797 46.8497 340.797 67.1828C340.797 89.6597 356.094 104 378.661 104C391.29 104 399.354 99.1488 409.206 88.5848L398.189 80.0226C398.183 80.031 389.874 90.9895 377.468 90.9895C363.048 90.9895 356.977 79.3111 356.977 73.269H411.075C413.917 50.1328 398.775 30.3656 376.571 30.3656ZM357.02 61.0967C357.145 59.7487 359.023 43.3761 376.442 43.3761C393.861 43.3761 395.978 59.7464 396.099 61.0967H357.02Z" fill="currentColor" />
131
+ </svg>
132
+
133
+ {{-- Light Mode 12 SVG --}}
134
+ <svg class="w-[448px] max-w-none relative -mt-[4.9rem] -ml-8 lg:ml-0 lg:-mt-[6.6rem] dark:hidden" viewBox="0 0 440 376" fill="none" xmlns="http://www.w3.org/2000/svg">
135
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
136
+ <path d="M188.263 355.73L188.595 355.73C195.441 348.845 205.766 339.761 219.569 328.477C232.93 317.193 242.978 308.205 249.714 301.511C256.34 294.626 260.867 287.358 263.296 279.708C265.725 272.058 264.565 264.121 259.816 255.896C254.516 246.716 247.062 239.352 237.454 233.805C227.957 228.067 217.908 225.198 207.307 225.198C196.927 225.197 190.136 227.97 186.934 233.516C183.621 238.872 184.726 246.331 190.247 255.894L125.647 255.891C116.371 239.825 112.395 225.481 113.72 212.858C115.265 200.235 121.559 190.481 132.602 183.596C143.754 176.52 158.607 172.982 177.159 172.983C196.594 172.984 215.863 176.523 234.968 183.6C253.961 190.486 271.299 200.241 286.98 212.864C302.661 225.488 315.14 239.833 324.416 255.899C333.03 270.817 336.841 283.918 335.847 295.203C335.075 306.487 331.376 316.336 324.75 324.751C318.346 333.167 308.408 343.494 294.936 355.734L377.094 355.737L405.917 405.656L217.087 405.649L188.263 355.73Z" fill="black" />
137
+ <path d="M9.11884 226.339L-13.7396 226.338L-42.7286 176.132L43.0733 176.135L175.595 405.649L112.651 405.647L9.11884 226.339Z" fill="black" />
138
+ <path d="M188.263 355.73L188.595 355.73C195.441 348.845 205.766 339.761 219.569 328.477C232.93 317.193 242.978 308.205 249.714 301.511C256.34 294.626 260.867 287.358 263.296 279.708C265.725 272.058 264.565 264.121 259.816 255.896C254.516 246.716 247.062 239.352 237.454 233.805C227.957 228.067 217.908 225.198 207.307 225.198C196.927 225.197 190.136 227.97 186.934 233.516C183.621 238.872 184.726 246.331 190.247 255.894L125.647 255.891C116.371 239.825 112.395 225.481 113.72 212.858C115.265 200.235 121.559 190.481 132.602 183.596C143.754 176.52 158.607 172.982 177.159 172.983C196.594 172.984 215.863 176.523 234.968 183.6C253.961 190.486 271.299 200.241 286.98 212.864C302.661 225.488 315.14 239.833 324.416 255.899C333.03 270.817 336.841 283.918 335.847 295.203C335.075 306.487 331.376 316.336 324.75 324.751C318.346 333.167 308.408 343.494 294.936 355.734L377.094 355.737L405.917 405.656L217.087 405.649L188.263 355.73Z" stroke="#1B1B18" stroke-width="1" />
139
+ <path d="M9.11884 226.339L-13.7396 226.338L-42.7286 176.132L43.0733 176.135L175.595 405.649L112.651 405.647L9.11884 226.339Z" stroke="#1B1B18" stroke-width="1" />
140
+ <path d="M204.592 327.449L204.923 327.449C211.769 320.564 222.094 311.479 235.897 300.196C249.258 288.912 259.306 279.923 266.042 273.23C272.668 266.345 277.195 259.077 279.624 251.427C282.053 243.777 280.893 235.839 276.145 227.615C270.844 218.435 263.39 211.071 253.782 205.524C244.285 199.786 234.236 196.917 223.635 196.916C213.255 196.916 206.464 199.689 203.262 205.235C199.949 210.59 201.054 218.049 206.575 227.612L141.975 227.61C132.699 211.544 128.723 197.2 130.048 184.577C131.593 171.954 137.887 162.2 148.93 155.315C160.083 148.239 174.935 144.701 193.487 144.702C212.922 144.703 232.192 148.242 251.296 155.319C270.289 162.205 287.627 171.96 303.308 184.583C318.989 197.207 331.468 211.552 340.745 227.618C349.358 242.536 353.169 255.637 352.175 266.921C351.403 278.205 347.704 288.055 341.078 296.47C334.674 304.885 324.736 315.213 311.264 327.453L393.422 327.456L422.246 377.375L233.415 377.368L204.592 327.449Z" fill="#F8B803" />
141
+ <path d="M25.447 198.058L2.58852 198.057L-26.4005 147.851L59.4015 147.854L191.923 377.368L128.979 377.365L25.447 198.058Z" fill="#F8B803" />
142
+ <path d="M204.592 327.449L204.923 327.449C211.769 320.564 222.094 311.479 235.897 300.196C249.258 288.912 259.306 279.923 266.042 273.23C272.668 266.345 277.195 259.077 279.624 251.427C282.053 243.777 280.893 235.839 276.145 227.615C270.844 218.435 263.39 211.071 253.782 205.524C244.285 199.786 234.236 196.917 223.635 196.916C213.255 196.916 206.464 199.689 203.262 205.235C199.949 210.59 201.054 218.049 206.575 227.612L141.975 227.61C132.699 211.544 128.723 197.2 130.048 184.577C131.593 171.954 137.887 162.2 148.93 155.315C160.083 148.239 174.935 144.701 193.487 144.702C212.922 144.703 232.192 148.242 251.296 155.319C270.289 162.205 287.627 171.96 303.308 184.583C318.989 197.207 331.468 211.552 340.745 227.618C349.358 242.536 353.169 255.637 352.175 266.921C351.403 278.205 347.704 288.055 341.078 296.47C334.674 304.885 324.736 315.213 311.264 327.453L393.422 327.456L422.246 377.375L233.415 377.368L204.592 327.449Z" stroke="#1B1B18" stroke-width="1" />
143
+ <path d="M25.447 198.058L2.58852 198.057L-26.4005 147.851L59.4015 147.854L191.923 377.368L128.979 377.365L25.447 198.058Z" stroke="#1B1B18" stroke-width="1" />
144
+ </g>
145
+ <g style="mix-blend-mode: hard-light" class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
146
+ <path d="M217.342 305.363L217.673 305.363C224.519 298.478 234.844 289.393 248.647 278.11C262.008 266.826 272.056 257.837 278.792 251.144C285.418 244.259 289.945 236.991 292.374 229.341C294.803 221.691 293.643 213.753 288.895 205.529C283.594 196.349 276.14 188.985 266.532 183.438C257.035 177.7 246.986 174.831 236.385 174.83C226.005 174.83 219.214 177.603 216.012 183.149C212.699 188.504 213.804 195.963 219.325 205.527L154.725 205.524C145.449 189.458 141.473 175.114 142.798 162.491C144.343 149.868 150.637 140.114 161.68 133.229C172.833 126.153 187.685 122.615 206.237 122.616C225.672 122.617 244.942 126.156 264.046 133.233C283.039 140.119 300.377 149.874 316.058 162.497C331.739 175.121 344.218 189.466 353.495 205.532C362.108 220.45 365.919 233.551 364.925 244.835C364.153 256.12 360.454 265.969 353.828 274.384C347.424 282.799 337.486 293.127 324.014 305.367L406.172 305.37L434.996 355.289L246.165 355.282L217.342 305.363Z" fill="#F0ACB8" />
147
+ <path d="M38.197 175.972L15.3385 175.971L-13.6505 125.765L72.1515 125.768L204.673 355.282L141.729 355.279L38.197 175.972Z" fill="#F0ACB8" />
148
+ <path d="M217.342 305.363L217.673 305.363C224.519 298.478 234.844 289.393 248.647 278.11C262.008 266.826 272.056 257.837 278.792 251.144C285.418 244.259 289.945 236.991 292.374 229.341C294.803 221.691 293.643 213.753 288.895 205.529C283.594 196.349 276.14 188.985 266.532 183.438C257.035 177.7 246.986 174.831 236.385 174.83C226.005 174.83 219.214 177.603 216.012 183.149C212.699 188.504 213.804 195.963 219.325 205.527L154.725 205.524C145.449 189.458 141.473 175.114 142.798 162.491C144.343 149.868 150.637 140.114 161.68 133.229C172.833 126.153 187.685 122.615 206.237 122.616C225.672 122.617 244.942 126.156 264.046 133.233C283.039 140.119 300.377 149.874 316.058 162.497C331.739 175.121 344.218 189.466 353.495 205.532C362.108 220.45 365.919 233.551 364.925 244.835C364.153 256.12 360.454 265.969 353.828 274.384C347.424 282.799 337.486 293.127 324.014 305.367L406.172 305.37L434.996 355.289L246.165 355.282L217.342 305.363Z" stroke="#1B1B18" stroke-width="1" />
149
+ <path d="M38.197 175.972L15.3385 175.971L-13.6505 125.765L72.1515 125.768L204.673 355.282L141.729 355.279L38.197 175.972Z" stroke="#1B1B18" stroke-width="1" />
150
+ </g>
151
+ <g style="mix-blend-mode: plus-darker" class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
152
+ <path d="M230.951 281.792L231.282 281.793C238.128 274.907 248.453 265.823 262.256 254.539C275.617 243.256 285.666 234.267 292.402 227.573C299.027 220.688 303.554 213.421 305.983 205.771C308.412 198.12 307.253 190.183 302.504 181.959C297.203 172.778 289.749 165.415 280.142 159.868C270.645 154.13 260.596 151.26 249.995 151.26C239.615 151.26 232.823 154.033 229.621 159.579C226.309 164.934 227.413 172.393 232.935 181.956L168.335 181.954C159.058 165.888 155.082 151.543 156.407 138.92C157.953 126.298 164.247 116.544 175.289 109.659C186.442 102.583 201.294 99.045 219.846 99.0457C239.281 99.0464 258.551 102.585 277.655 109.663C296.649 116.549 313.986 126.303 329.667 138.927C345.349 151.551 357.827 165.895 367.104 181.961C375.718 196.88 379.528 209.981 378.535 221.265C377.762 232.549 374.063 242.399 367.438 250.814C361.033 259.229 351.095 269.557 337.624 281.796L419.782 281.8L448.605 331.719L259.774 331.712L230.951 281.792Z" fill="#F3BEC7" />
153
+ <path d="M51.8063 152.402L28.9479 152.401L-0.0411453 102.195L85.7608 102.198L218.282 331.711L155.339 331.709L51.8063 152.402Z" fill="#F3BEC7" />
154
+ <path d="M230.951 281.792L231.282 281.793C238.128 274.907 248.453 265.823 262.256 254.539C275.617 243.256 285.666 234.267 292.402 227.573C299.027 220.688 303.554 213.421 305.983 205.771C308.412 198.12 307.253 190.183 302.504 181.959C297.203 172.778 289.749 165.415 280.142 159.868C270.645 154.13 260.596 151.26 249.995 151.26C239.615 151.26 232.823 154.033 229.621 159.579C226.309 164.934 227.413 172.393 232.935 181.956L168.335 181.954C159.058 165.888 155.082 151.543 156.407 138.92C157.953 126.298 164.247 116.544 175.289 109.659C186.442 102.583 201.294 99.045 219.846 99.0457C239.281 99.0464 258.551 102.585 277.655 109.663C296.649 116.549 313.986 126.303 329.667 138.927C345.349 151.551 357.827 165.895 367.104 181.961C375.718 196.88 379.528 209.981 378.535 221.265C377.762 232.549 374.063 242.399 367.438 250.814C361.033 259.229 351.095 269.557 337.624 281.796L419.782 281.8L448.605 331.719L259.774 331.712L230.951 281.792Z" stroke="#1B1B18" stroke-width="1" />
155
+ <path d="M51.8063 152.402L28.9479 152.401L-0.0411453 102.195L85.7608 102.198L218.282 331.711L155.339 331.709L51.8063 152.402Z" stroke="#1B1B18" stroke-width="1" />
156
+ </g>
157
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
158
+ <path d="M188.467 355.363L188.798 355.363C195.644 348.478 205.969 339.393 219.772 328.11C233.133 316.826 243.181 307.837 249.917 301.144C253.696 297.217 256.792 293.166 259.205 288.991C261.024 285.845 262.455 282.628 263.499 279.341C265.928 271.691 264.768 263.753 260.02 255.529C254.719 246.349 247.265 238.985 237.657 233.438C228.16 227.7 218.111 224.831 207.51 224.83C197.13 224.83 190.339 227.603 187.137 233.149C183.824 238.504 184.929 245.963 190.45 255.527L125.851 255.524C116.574 239.458 112.598 225.114 113.923 212.491C114.615 206.836 116.261 201.756 118.859 197.253C122.061 191.704 126.709 187.03 132.805 183.229C143.958 176.153 158.81 172.615 177.362 172.616C196.797 172.617 216.067 176.156 235.171 183.233C254.164 190.119 271.502 199.874 287.183 212.497C302.864 225.121 315.343 239.466 324.62 255.532C333.233 270.45 337.044 283.551 336.05 294.835C335.46 303.459 333.16 311.245 329.151 318.194C327.915 320.337 326.515 322.4 324.953 324.384C318.549 332.799 308.611 343.127 295.139 355.367L377.297 355.37L406.121 405.289L217.29 405.282L188.467 355.363Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
159
+ <path d="M9.32197 225.972L-13.5365 225.971L-42.5255 175.765L43.2765 175.768L175.798 405.282L112.854 405.279L9.32197 225.972Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
160
+ <path d="M345.247 111.915C329.566 99.2919 312.229 89.5371 293.235 82.6512L235.167 183.228C254.161 190.114 271.498 199.869 287.179 212.492L345.247 111.915Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
161
+ <path d="M382.686 154.964C373.41 138.898 360.931 124.553 345.25 111.93L287.182 212.506C302.863 225.13 315.342 239.475 324.618 255.541L382.686 154.964Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
162
+ <path d="M293.243 82.6472C274.139 75.57 254.869 72.031 235.434 72.0303L177.366 172.607C196.801 172.608 216.071 176.147 235.175 183.224L293.243 82.6472Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
163
+ <path d="M394.118 194.257C395.112 182.973 391.301 169.872 382.688 154.953L324.619 255.53C333.233 270.448 337.044 283.55 336.05 294.834L394.118 194.257Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
164
+ <path d="M235.432 72.0311C216.88 72.0304 202.027 75.5681 190.875 82.6442L132.806 183.221C143.959 176.145 158.812 172.607 177.363 172.608L235.432 72.0311Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
165
+ <path d="M265.59 124.25C276.191 124.251 286.24 127.12 295.737 132.858L237.669 233.435C228.172 227.697 218.123 224.828 207.522 224.827L265.59 124.25Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
166
+ <path d="M295.719 132.859C305.326 138.406 312.78 145.77 318.081 154.95L260.013 255.527C254.712 246.347 247.258 238.983 237.651 233.436L295.719 132.859Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
167
+ <path d="M387.218 217.608C391.227 210.66 393.527 202.874 394.117 194.25L336.049 294.827C335.459 303.451 333.159 311.237 329.15 318.185L387.218 217.608Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
168
+ <path d="M245.211 132.577C248.413 127.03 255.204 124.257 265.584 124.258L207.516 224.835C197.136 224.834 190.345 227.607 187.143 233.154L245.211 132.577Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
169
+ <path d="M318.094 154.945C322.842 163.17 324.002 171.107 321.573 178.757L263.505 279.334C265.934 271.684 264.774 263.746 260.026 255.522L318.094 154.945Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
170
+ <path d="M176.925 96.6737C180.127 91.1249 184.776 86.4503 190.871 82.6499L132.803 183.227C126.708 187.027 122.059 191.702 118.857 197.25L176.925 96.6737Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
171
+ <path d="M387.226 217.606C385.989 219.749 384.59 221.813 383.028 223.797L324.96 324.373C326.522 322.39 327.921 320.326 329.157 318.183L387.226 217.606Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
172
+ <path d="M317.269 188.408C319.087 185.262 320.519 182.045 321.562 178.758L263.494 279.335C262.451 282.622 261.019 285.839 259.201 288.985L317.269 188.408Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
173
+ <path d="M245.208 132.573C241.895 137.928 243 145.387 248.522 154.95L190.454 255.527C184.932 245.964 183.827 238.505 187.14 233.15L245.208 132.573Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
174
+ <path d="M176.93 96.6719C174.331 101.175 172.686 106.255 171.993 111.91L113.925 212.487C114.618 206.831 116.263 201.752 118.862 197.249L176.93 96.6719Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
175
+ <path d="M317.266 188.413C314.853 192.589 311.757 196.64 307.978 200.566L249.91 301.143C253.689 297.216 256.785 293.166 259.198 288.99L317.266 188.413Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
176
+ <path d="M464.198 304.708L435.375 254.789L377.307 355.366L406.13 405.285L464.198 304.708Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
177
+ <path d="M353.209 254.787C366.68 242.548 376.618 232.22 383.023 223.805L324.955 324.382C318.55 332.797 308.612 343.124 295.141 355.364L353.209 254.787Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
178
+ <path d="M435.37 254.787L353.212 254.784L295.144 355.361L377.302 355.364L435.37 254.787Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
179
+ <path d="M183.921 154.947L248.521 154.95L190.453 255.527L125.853 255.524L183.921 154.947Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
180
+ <path d="M171.992 111.914C170.668 124.537 174.643 138.881 183.92 154.947L125.852 255.524C116.575 239.458 112.599 225.114 113.924 212.491L171.992 111.914Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
181
+ <path d="M307.987 200.562C301.251 207.256 291.203 216.244 277.842 227.528L219.774 328.105C233.135 316.821 243.183 307.832 249.919 301.139L307.987 200.562Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
182
+ <path d="M15.5469 75.1797L44.5359 125.386L-13.5321 225.963L-42.5212 175.756L15.5469 75.1797Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
183
+ <path d="M277.836 227.536C264.033 238.82 253.708 247.904 246.862 254.789L188.794 355.366C195.64 348.481 205.965 339.397 219.768 328.113L277.836 227.536Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
184
+ <path d="M275.358 304.706L464.189 304.713L406.12 405.29L217.29 405.283L275.358 304.706Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
185
+ <path d="M44.5279 125.39L67.3864 125.39L9.31834 225.967L-13.5401 225.966L44.5279 125.39Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
186
+ <path d="M101.341 75.1911L233.863 304.705L175.795 405.282L43.2733 175.768L101.341 75.1911ZM15.5431 75.19L-42.525 175.767L43.277 175.77L101.345 75.1932L15.5431 75.19Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
187
+ <path d="M246.866 254.784L246.534 254.784L188.466 355.361L188.798 355.361L246.866 254.784Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
188
+ <path d="M246.539 254.781L275.362 304.701L217.294 405.277L188.471 355.358L246.539 254.781Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
189
+ <path d="M67.3906 125.391L170.923 304.698L112.855 405.275L9.32257 225.967L67.3906 125.391Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
190
+ <path d="M170.921 304.699L233.865 304.701L175.797 405.278L112.853 405.276L170.921 304.699Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="bevel" />
191
+ </g>
192
+ <g style="mix-blend-mode: hard-light" class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
193
+ <path d="M246.544 254.79L246.875 254.79C253.722 247.905 264.046 238.82 277.849 227.537C291.21 216.253 301.259 207.264 307.995 200.57C314.62 193.685 319.147 186.418 321.577 178.768C324.006 171.117 322.846 163.18 318.097 154.956C312.796 145.775 305.342 138.412 295.735 132.865C286.238 127.127 276.189 124.258 265.588 124.257C255.208 124.257 248.416 127.03 245.214 132.576C241.902 137.931 243.006 145.39 248.528 154.953L183.928 154.951C174.652 138.885 170.676 124.541 172 111.918C173.546 99.2946 179.84 89.5408 190.882 82.6559C202.035 75.5798 216.887 72.0421 235.439 72.0428C254.874 72.0435 274.144 75.5825 293.248 82.6598C312.242 89.5457 329.579 99.3005 345.261 111.924C360.942 124.548 373.421 138.892 382.697 154.958C391.311 169.877 395.121 182.978 394.128 194.262C393.355 205.546 389.656 215.396 383.031 223.811C376.627 232.226 366.688 242.554 353.217 254.794L435.375 254.797L464.198 304.716L275.367 304.709L246.544 254.79Z" fill="#F0ACB8" />
194
+ <path d="M246.544 254.79L246.875 254.79C253.722 247.905 264.046 238.82 277.849 227.537C291.21 216.253 301.259 207.264 307.995 200.57C314.62 193.685 319.147 186.418 321.577 178.768C324.006 171.117 322.846 163.18 318.097 154.956C312.796 145.775 305.342 138.412 295.735 132.865C286.238 127.127 276.189 124.258 265.588 124.257C255.208 124.257 248.416 127.03 245.214 132.576C241.902 137.931 243.006 145.39 248.528 154.953L183.928 154.951C174.652 138.885 170.676 124.541 172 111.918C173.546 99.2946 179.84 89.5408 190.882 82.6559C202.035 75.5798 216.887 72.0421 235.439 72.0428C254.874 72.0435 274.144 75.5825 293.248 82.6598C312.242 89.5457 329.579 99.3005 345.261 111.924C360.942 124.548 373.421 138.892 382.697 154.958C391.311 169.877 395.121 182.978 394.128 194.262C393.355 205.546 389.656 215.396 383.031 223.811C376.627 232.226 366.688 242.554 353.217 254.794L435.375 254.797L464.198 304.716L275.367 304.709L246.544 254.79Z" stroke="#1B1B18" stroke-width="1" stroke-linejoin="round" />
195
+ </g>
196
+ <g style="mix-blend-mode: hard-light" class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
197
+ <path d="M67.41 125.402L44.5515 125.401L15.5625 75.1953L101.364 75.1985L233.886 304.712L170.942 304.71L67.41 125.402Z" fill="#F0ACB8" />
198
+ <path d="M67.41 125.402L44.5515 125.401L15.5625 75.1953L101.364 75.1985L233.886 304.712L170.942 304.71L67.41 125.402Z" stroke="#1B1B18" stroke-width="1" />
199
+ </g>
200
+ </svg>
201
+
202
+ {{-- Dark Mode 12 SVG --}}
203
+ <svg class="w-[448px] max-w-none relative -mt-[4.9rem] -ml-8 lg:ml-0 lg:-mt-[6.6rem] hidden dark:block" viewBox="0 0 440 376" fill="none" xmlns="http://www.w3.org/2000/svg">
204
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
205
+ <path d="M188.263 355.73L188.595 355.73C195.441 348.845 205.766 339.761 219.569 328.477C232.93 317.193 242.978 308.205 249.714 301.511C256.34 294.626 260.867 287.358 263.296 279.708C265.725 272.058 264.565 264.121 259.816 255.896C254.516 246.716 247.062 239.352 237.454 233.805C227.957 228.067 217.908 225.198 207.307 225.198C196.927 225.197 190.136 227.97 186.934 233.516C183.621 238.872 184.726 246.331 190.247 255.894L125.647 255.891C116.371 239.825 112.395 225.481 113.72 212.858C115.265 200.235 121.559 190.481 132.602 183.596C143.754 176.52 158.607 172.982 177.159 172.983C196.594 172.984 215.863 176.523 234.968 183.6C253.961 190.486 271.299 200.241 286.98 212.864C302.661 225.488 315.14 239.833 324.416 255.899C333.03 270.817 336.841 283.918 335.847 295.203C335.075 306.487 331.376 316.336 324.75 324.751C318.346 333.167 308.408 343.494 294.936 355.734L377.094 355.737L405.917 405.656L217.087 405.649L188.263 355.73Z" fill="black"/>
206
+ <path d="M9.11884 226.339L-13.7396 226.338L-42.7286 176.132L43.0733 176.135L175.595 405.649L112.651 405.647L9.11884 226.339Z" fill="black"/>
207
+ <path d="M188.263 355.73L188.595 355.73C195.441 348.845 205.766 339.761 219.569 328.477C232.93 317.193 242.978 308.205 249.714 301.511C256.34 294.626 260.867 287.358 263.296 279.708C265.725 272.058 264.565 264.121 259.816 255.896C254.516 246.716 247.062 239.352 237.454 233.805C227.957 228.067 217.908 225.198 207.307 225.198C196.927 225.197 190.136 227.97 186.934 233.516C183.621 238.872 184.726 246.331 190.247 255.894L125.647 255.891C116.371 239.825 112.395 225.481 113.72 212.858C115.265 200.235 121.559 190.481 132.602 183.596C143.754 176.52 158.607 172.982 177.159 172.983C196.594 172.984 215.863 176.523 234.968 183.6C253.961 190.486 271.299 200.241 286.98 212.864C302.661 225.488 315.14 239.833 324.416 255.899C333.03 270.817 336.841 283.918 335.847 295.203C335.075 306.487 331.376 316.336 324.75 324.751C318.346 333.167 308.408 343.494 294.936 355.734L377.094 355.737L405.917 405.656L217.087 405.649L188.263 355.73Z" stroke="#FF750F" stroke-width="1"/>
208
+ <path d="M9.11884 226.339L-13.7396 226.338L-42.7286 176.132L43.0733 176.135L175.595 405.649L112.651 405.647L9.11884 226.339Z" stroke="#FF750F" stroke-width="1"/>
209
+ <path d="M204.592 327.449L204.923 327.449C211.769 320.564 222.094 311.479 235.897 300.196C249.258 288.912 259.306 279.923 266.042 273.23C272.668 266.345 277.195 259.077 279.624 251.427C282.053 243.777 280.893 235.839 276.145 227.615C270.844 218.435 263.39 211.071 253.782 205.524C244.285 199.786 234.236 196.917 223.635 196.916C213.255 196.916 206.464 199.689 203.262 205.235C199.949 210.59 201.054 218.049 206.575 227.612L141.975 227.61C132.699 211.544 128.723 197.2 130.048 184.577C131.593 171.954 137.887 162.2 148.93 155.315C160.083 148.239 174.935 144.701 193.487 144.702C212.922 144.703 232.192 148.242 251.296 155.319C270.289 162.205 287.627 171.96 303.308 184.583C318.989 197.207 331.468 211.552 340.745 227.618C349.358 242.536 353.169 255.637 352.175 266.921C351.403 278.205 347.704 288.055 341.078 296.47C334.674 304.885 324.736 315.213 311.264 327.453L393.422 327.456L422.246 377.375L233.415 377.368L204.592 327.449Z" fill="#391800"/>
210
+ <path d="M25.447 198.058L2.58852 198.057L-26.4005 147.851L59.4015 147.854L191.923 377.368L128.979 377.365L25.447 198.058Z" fill="#391800"/>
211
+ <path d="M204.592 327.449L204.923 327.449C211.769 320.564 222.094 311.479 235.897 300.196C249.258 288.912 259.306 279.923 266.042 273.23C272.668 266.345 277.195 259.077 279.624 251.427C282.053 243.777 280.893 235.839 276.145 227.615C270.844 218.435 263.39 211.071 253.782 205.524C244.285 199.786 234.236 196.917 223.635 196.916C213.255 196.916 206.464 199.689 203.262 205.235C199.949 210.59 201.054 218.049 206.575 227.612L141.975 227.61C132.699 211.544 128.723 197.2 130.048 184.577C131.593 171.954 137.887 162.2 148.93 155.315C160.083 148.239 174.935 144.701 193.487 144.702C212.922 144.703 232.192 148.242 251.296 155.319C270.289 162.205 287.627 171.96 303.308 184.583C318.989 197.207 331.468 211.552 340.745 227.618C349.358 242.536 353.169 255.637 352.175 266.921C351.403 278.205 347.704 288.055 341.078 296.47C334.674 304.885 324.736 315.213 311.264 327.453L393.422 327.456L422.246 377.375L233.415 377.368L204.592 327.449Z" stroke="#FF750F" stroke-width="1"/>
212
+ <path d="M25.447 198.058L2.58852 198.057L-26.4005 147.851L59.4015 147.854L191.923 377.368L128.979 377.365L25.447 198.058Z" stroke="#FF750F" stroke-width="1"/>
213
+ </g>
214
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4" style="mix-blend-mode:hard-light">
215
+ <path d="M217.342 305.363L217.673 305.363C224.519 298.478 234.844 289.393 248.647 278.11C262.008 266.826 272.056 257.837 278.792 251.144C285.418 244.259 289.945 236.991 292.374 229.341C294.803 221.691 293.643 213.753 288.895 205.529C283.594 196.349 276.14 188.985 266.532 183.438C257.035 177.7 246.986 174.831 236.385 174.83C226.005 174.83 219.214 177.603 216.012 183.149C212.699 188.504 213.804 195.963 219.325 205.527L154.725 205.524C145.449 189.458 141.473 175.114 142.798 162.491C144.343 149.868 150.637 140.114 161.68 133.229C172.833 126.153 187.685 122.615 206.237 122.616C225.672 122.617 244.942 126.156 264.046 133.233C283.039 140.119 300.377 149.874 316.058 162.497C331.739 175.121 344.218 189.466 353.495 205.532C362.108 220.45 365.919 233.551 364.925 244.835C364.153 256.12 360.454 265.969 353.828 274.384C347.424 282.799 337.486 293.127 324.014 305.367L406.172 305.37L434.996 355.289L246.165 355.282L217.342 305.363Z" fill="#733000"/>
216
+ <path d="M38.197 175.972L15.3385 175.971L-13.6505 125.765L72.1515 125.768L204.673 355.282L141.729 355.279L38.197 175.972Z" fill="#733000"/>
217
+ <path d="M217.342 305.363L217.673 305.363C224.519 298.478 234.844 289.393 248.647 278.11C262.008 266.826 272.056 257.837 278.792 251.144C285.418 244.259 289.945 236.991 292.374 229.341C294.803 221.691 293.643 213.753 288.895 205.529C283.594 196.349 276.14 188.985 266.532 183.438C257.035 177.7 246.986 174.831 236.385 174.83C226.005 174.83 219.214 177.603 216.012 183.149C212.699 188.504 213.804 195.963 219.325 205.527L154.725 205.524C145.449 189.458 141.473 175.114 142.798 162.491C144.343 149.868 150.637 140.114 161.68 133.229C172.833 126.153 187.685 122.615 206.237 122.616C225.672 122.617 244.942 126.156 264.046 133.233C283.039 140.119 300.377 149.874 316.058 162.497C331.739 175.121 344.218 189.466 353.495 205.532C362.108 220.45 365.919 233.551 364.925 244.835C364.153 256.12 360.454 265.969 353.828 274.384C347.424 282.799 337.486 293.127 324.014 305.367L406.172 305.37L434.996 355.289L246.165 355.282L217.342 305.363Z" stroke="#FF750F" stroke-width="1"/>
218
+ <path d="M38.197 175.972L15.3385 175.971L-13.6505 125.765L72.1515 125.768L204.673 355.282L141.729 355.279L38.197 175.972Z" stroke="#FF750F" stroke-width="1"/>
219
+ </g>
220
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
221
+ <path d="M217.342 305.363L217.673 305.363C224.519 298.478 234.844 289.393 248.647 278.11C262.008 266.826 272.056 257.837 278.792 251.144C285.418 244.259 289.945 236.991 292.374 229.341C294.803 221.691 293.643 213.753 288.895 205.529C283.594 196.349 276.14 188.985 266.532 183.438C257.035 177.7 246.986 174.831 236.385 174.83C226.005 174.83 219.214 177.603 216.012 183.149C212.699 188.504 213.804 195.963 219.325 205.527L154.726 205.524C145.449 189.458 141.473 175.114 142.798 162.491C144.343 149.868 150.637 140.114 161.68 133.229C172.833 126.153 187.685 122.615 206.237 122.616C225.672 122.617 244.942 126.156 264.046 133.233C283.039 140.119 300.377 149.874 316.058 162.497C331.739 175.121 344.218 189.466 353.495 205.532C362.108 220.45 365.919 233.551 364.925 244.835C364.153 256.12 360.454 265.969 353.828 274.384C347.424 282.799 337.486 293.127 324.014 305.367L406.172 305.37L434.996 355.289L246.165 355.282L217.342 305.363Z" stroke="#FF750F" stroke-width="1"/>
222
+ <path d="M38.197 175.972L15.3385 175.971L-13.6505 125.765L72.1515 125.768L204.673 355.282L141.729 355.279L38.197 175.972Z" stroke="#FF750F" stroke-width="1"/>
223
+ </g>
224
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4">
225
+ <path d="M188.467 355.363L188.798 355.363C195.644 348.478 205.969 339.393 219.772 328.11C233.133 316.826 243.181 307.837 249.917 301.144C253.696 297.217 256.792 293.166 259.205 288.991C261.024 285.845 262.455 282.628 263.499 279.341C265.928 271.691 264.768 263.753 260.02 255.529C254.719 246.349 247.265 238.985 237.657 233.438C228.16 227.7 218.111 224.831 207.51 224.83C197.13 224.83 190.339 227.603 187.137 233.149C183.824 238.504 184.929 245.963 190.45 255.527L125.851 255.524C116.574 239.458 112.598 225.114 113.923 212.491C114.615 206.836 116.261 201.756 118.859 197.253C122.061 191.704 126.709 187.03 132.805 183.229C143.958 176.153 158.81 172.615 177.362 172.616C196.797 172.617 216.067 176.156 235.171 183.233C254.164 190.119 271.502 199.874 287.183 212.497C302.864 225.121 315.343 239.466 324.62 255.532C333.233 270.45 337.044 283.551 336.05 294.835C335.46 303.459 333.16 311.245 329.151 318.194C327.915 320.337 326.515 322.4 324.953 324.384C318.549 332.799 308.611 343.127 295.139 355.367L377.297 355.37L406.121 405.289L217.29 405.282L188.467 355.363Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
226
+ <path d="M9.32197 225.972L-13.5365 225.971L-42.5255 175.765L43.2765 175.768L175.798 405.282L112.854 405.279L9.32197 225.972Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
227
+ <path d="M345.247 111.915C329.566 99.2919 312.229 89.5371 293.235 82.6512L235.167 183.228C254.161 190.114 271.498 199.869 287.179 212.492L345.247 111.915Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
228
+ <path d="M382.686 154.964C373.41 138.898 360.931 124.553 345.25 111.93L287.182 212.506C302.863 225.13 315.342 239.475 324.618 255.541L382.686 154.964Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
229
+ <path d="M293.243 82.6472C274.139 75.57 254.869 72.031 235.434 72.0303L177.366 172.607C196.801 172.608 216.071 176.147 235.175 183.224L293.243 82.6472Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
230
+ <path d="M394.118 194.257C395.112 182.973 391.301 169.872 382.688 154.953L324.619 255.53C333.233 270.448 337.044 283.55 336.05 294.834L394.118 194.257Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
231
+ <path d="M235.432 72.0311C216.88 72.0304 202.027 75.5681 190.875 82.6442L132.806 183.221C143.959 176.145 158.812 172.607 177.363 172.608L235.432 72.0311Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
232
+ <path d="M265.59 124.25C276.191 124.251 286.24 127.12 295.737 132.858L237.669 233.435C228.172 227.697 218.123 224.828 207.522 224.827L265.59 124.25Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
233
+ <path d="M295.719 132.859C305.326 138.406 312.78 145.77 318.081 154.95L260.013 255.527C254.712 246.347 247.258 238.983 237.651 233.436L295.719 132.859Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
234
+ <path d="M387.218 217.608C391.227 210.66 393.527 202.874 394.117 194.25L336.049 294.827C335.459 303.451 333.159 311.237 329.15 318.185L387.218 217.608Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
235
+ <path d="M245.211 132.577C248.413 127.03 255.204 124.257 265.584 124.258L207.516 224.835C197.136 224.834 190.345 227.607 187.143 233.154L245.211 132.577Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
236
+ <path d="M318.094 154.945C322.842 163.17 324.002 171.107 321.573 178.757L263.505 279.334C265.934 271.684 264.774 263.746 260.026 255.522L318.094 154.945Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
237
+ <path d="M176.925 96.6737C180.127 91.1249 184.776 86.4503 190.871 82.6499L132.803 183.227C126.708 187.027 122.059 191.702 118.857 197.25L176.925 96.6737Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
238
+ <path d="M387.226 217.606C385.989 219.749 384.59 221.813 383.028 223.797L324.96 324.373C326.522 322.39 327.921 320.326 329.157 318.183L387.226 217.606Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
239
+ <path d="M317.269 188.408C319.087 185.262 320.519 182.045 321.562 178.758L263.494 279.335C262.451 282.622 261.019 285.839 259.201 288.985L317.269 188.408Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
240
+ <path d="M245.208 132.573C241.895 137.928 243 145.387 248.522 154.95L190.454 255.527C184.932 245.964 183.827 238.505 187.14 233.15L245.208 132.573Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
241
+ <path d="M176.93 96.6719C174.331 101.175 172.686 106.255 171.993 111.91L113.925 212.487C114.618 206.831 116.263 201.752 118.862 197.249L176.93 96.6719Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
242
+ <path d="M317.266 188.413C314.853 192.589 311.757 196.64 307.978 200.566L249.91 301.143C253.689 297.216 256.785 293.166 259.198 288.99L317.266 188.413Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
243
+ <path d="M464.198 304.708L435.375 254.789L377.307 355.366L406.13 405.285L464.198 304.708Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
244
+ <path d="M353.209 254.787C366.68 242.548 376.618 232.22 383.023 223.805L324.955 324.382C318.55 332.797 308.612 343.124 295.141 355.364L353.209 254.787Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
245
+ <path d="M435.37 254.787L353.212 254.784L295.144 355.361L377.302 355.364L435.37 254.787Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
246
+ <path d="M183.921 154.947L248.521 154.95L190.453 255.527L125.853 255.524L183.921 154.947Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
247
+ <path d="M171.992 111.914C170.668 124.537 174.643 138.881 183.92 154.947L125.852 255.524C116.575 239.458 112.599 225.114 113.924 212.491L171.992 111.914Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
248
+ <path d="M307.987 200.562C301.251 207.256 291.203 216.244 277.842 227.528L219.774 328.105C233.135 316.821 243.183 307.832 249.919 301.139L307.987 200.562Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
249
+ <path d="M15.5469 75.1797L44.5359 125.386L-13.5321 225.963L-42.5212 175.756L15.5469 75.1797Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
250
+ <path d="M277.836 227.536C264.033 238.82 253.708 247.904 246.862 254.789L188.794 355.366C195.64 348.481 205.965 339.397 219.768 328.113L277.836 227.536Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
251
+ <path d="M275.358 304.706L464.189 304.713L406.12 405.29L217.29 405.283L275.358 304.706Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
252
+ <path d="M44.5279 125.39L67.3864 125.39L9.31834 225.967L-13.5401 225.966L44.5279 125.39Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
253
+ <path d="M101.341 75.1911L233.863 304.705L175.795 405.282L43.2733 175.768L101.341 75.1911ZM15.5431 75.19L-42.525 175.767L43.277 175.77L101.345 75.1932L15.5431 75.19Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
254
+ <path d="M246.866 254.784L246.534 254.784L188.466 355.361L188.798 355.361L246.866 254.784Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
255
+ <path d="M246.539 254.781L275.362 304.701L217.294 405.277L188.471 355.358L246.539 254.781Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
256
+ <path d="M67.3906 125.391L170.923 304.698L112.855 405.275L9.32257 225.967L67.3906 125.391Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
257
+ <path d="M170.921 304.699L233.865 304.701L175.797 405.278L112.853 405.276L170.921 304.699Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="bevel"/>
258
+ </g>
259
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4" style="mix-blend-mode:hard-light">
260
+ <path d="M246.544 254.79L246.875 254.79C253.722 247.905 264.046 238.82 277.849 227.537C291.21 216.253 301.259 207.264 307.995 200.57C314.62 193.685 319.147 186.418 321.577 178.768C324.006 171.117 322.846 163.18 318.097 154.956C312.796 145.775 305.342 138.412 295.735 132.865C286.238 127.127 276.189 124.258 265.588 124.257C255.208 124.257 248.416 127.03 245.214 132.576C241.902 137.931 243.006 145.39 248.528 154.953L183.928 154.951C174.652 138.885 170.676 124.541 172 111.918C173.546 99.2946 179.84 89.5408 190.882 82.6559C202.035 75.5798 216.887 72.0421 235.439 72.0428C254.874 72.0435 274.144 75.5825 293.248 82.6598C312.242 89.5457 329.579 99.3005 345.261 111.924C360.942 124.548 373.421 138.892 382.697 154.958C391.311 169.877 395.121 182.978 394.128 194.262C393.355 205.546 389.656 215.396 383.031 223.811C376.627 232.226 366.688 242.554 353.217 254.794L435.375 254.797L464.198 304.716L275.367 304.709L246.544 254.79Z" fill="#4B0600"/>
261
+ <path d="M246.544 254.79L246.875 254.79C253.722 247.905 264.046 238.82 277.849 227.537C291.21 216.253 301.259 207.264 307.995 200.57C314.62 193.685 319.147 186.418 321.577 178.768C324.006 171.117 322.846 163.18 318.097 154.956C312.796 145.775 305.342 138.412 295.735 132.865C286.238 127.127 276.189 124.258 265.588 124.257C255.208 124.257 248.416 127.03 245.214 132.576C241.902 137.931 243.006 145.39 248.528 154.953L183.928 154.951C174.652 138.885 170.676 124.541 172 111.918C173.546 99.2946 179.84 89.5408 190.882 82.6559C202.035 75.5798 216.887 72.0421 235.439 72.0428C254.874 72.0435 274.144 75.5825 293.248 82.6598C312.242 89.5457 329.579 99.3005 345.261 111.924C360.942 124.548 373.421 138.892 382.697 154.958C391.311 169.877 395.121 182.978 394.128 194.262C393.355 205.546 389.656 215.396 383.031 223.811C376.627 232.226 366.688 242.554 353.217 254.794L435.375 254.797L464.198 304.716L275.367 304.709L246.544 254.79Z" stroke="#FF750F" stroke-width="1" stroke-linejoin="round"/>
262
+ </g>
263
+ <g class="transition-all delay-300 translate-y-0 opacity-100 duration-750 starting:opacity-0 starting:translate-y-4" style="mix-blend-mode:hard-light">
264
+ <path d="M67.41 125.402L44.5515 125.401L15.5625 75.1953L101.364 75.1985L233.886 304.712L170.942 304.71L67.41 125.402Z" fill="#4B0600"/>
265
+ <path d="M67.41 125.402L44.5515 125.401L15.5625 75.1953L101.364 75.1985L233.886 304.712L170.942 304.71L67.41 125.402Z" stroke="#FF750F" stroke-width="1"/>
266
+ </g>
267
+ </svg>
268
+ <div class="absolute inset-0 rounded-t-lg lg:rounded-t-none lg:rounded-r-lg shadow-[inset_0px_0px_0px_1px_rgba(26,26,0,0.16)] dark:shadow-[inset_0px_0px_0px_1px_#fffaed2d]"></div>
269
+ </div>
270
+ </main>
271
+ </div>
272
+
273
+ @if (Route::has('login'))
274
+ <div class="h-14.5 hidden lg:block"></div>
275
+ @endif
276
+ </body>
277
+ </html>
laravel-sample/routes/console.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Foundation\Inspiring;
4
+ use Illuminate\Support\Facades\Artisan;
5
+
6
+ Artisan::command('inspire', function () {
7
+ $this->comment(Inspiring::quote());
8
+ })->purpose('Display an inspiring quote');
laravel-sample/routes/web.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ use Illuminate\Support\Facades\Route;
4
+
5
+ Route::get('/', function () {
6
+ return view('welcome');
7
+ });
laravel-sample/storage/app/.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ *
2
+ !private/
3
+ !public/
4
+ !.gitignore
laravel-sample/storage/app/private/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *
2
+ !.gitignore
laravel-sample/storage/app/public/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *
2
+ !.gitignore
laravel-sample/storage/framework/.gitignore ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
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
laravel-sample/storage/framework/cache/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ *
2
+ !data/
3
+ !.gitignore