├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ └── Controllers │ │ ├── Controller.php │ │ ├── JobController.php │ │ ├── RegisteredUserController.php │ │ └── SessionController.php ├── Jobs │ └── TranslateJob.php ├── Mail │ └── JobPosted.php ├── Models │ ├── Employer.php │ ├── Job.php │ └── User.php ├── Policies │ └── JobPolicy.php ├── Providers │ └── AppServiceProvider.php └── View │ └── Components │ └── Layout.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ ├── EmployerFactory.php │ ├── JobFactory.php │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_03_21_151800_create_job_listings_table.php │ └── 2024_03_25_144504_create_employers_table.php └── seeders │ ├── DatabaseSeeder.php │ └── JobSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ ├── components │ ├── button.blade.php │ ├── form-button.blade.php │ ├── form-error.blade.php │ ├── form-field.blade.php │ ├── form-input.blade.php │ ├── form-label.blade.php │ ├── layout.blade.php │ └── nav-link.blade.php │ ├── contact.blade.php │ ├── home.blade.php │ ├── jobs │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── mail │ └── job-posted.blade.php │ └── vendor │ └── pagination │ ├── bootstrap-4.blade.php │ ├── bootstrap-5.blade.php │ ├── default.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ ├── simple-bootstrap-5.blade.php │ ├── simple-default.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php ├── routes ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 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 19 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_TIMEZONE=UTC 6 | APP_URL=http://localhost 7 | 8 | APP_LOCALE=en 9 | APP_FALLBACK_LOCALE=en 10 | APP_FAKER_LOCALE=en_US 11 | 12 | APP_MAINTENANCE_DRIVER=file 13 | APP_MAINTENANCE_STORE=database 14 | 15 | BCRYPT_ROUNDS=12 16 | 17 | LOG_CHANNEL=stack 18 | LOG_STACK=single 19 | LOG_DEPRECATIONS_CHANNEL=null 20 | LOG_LEVEL=debug 21 | 22 | DB_CONNECTION=sqlite 23 | # DB_HOST=127.0.0.1 24 | # DB_PORT=3306 25 | # DB_DATABASE=laravel 26 | # DB_USERNAME=root 27 | # DB_PASSWORD= 28 | 29 | SESSION_DRIVER=database 30 | SESSION_LIFETIME=120 31 | SESSION_ENCRYPT=false 32 | SESSION_PATH=/ 33 | SESSION_DOMAIN=null 34 | 35 | BROADCAST_CONNECTION=log 36 | FILESYSTEM_DISK=local 37 | QUEUE_CONNECTION=database 38 | 39 | CACHE_STORE=database 40 | CACHE_PREFIX= 41 | 42 | MEMCACHED_HOST=127.0.0.1 43 | 44 | REDIS_CLIENT=phpredis 45 | REDIS_HOST=127.0.0.1 46 | REDIS_PASSWORD=null 47 | REDIS_PORT=6379 48 | 49 | MAIL_MAILER=log 50 | MAIL_HOST=127.0.0.1 51 | MAIL_PORT=2525 52 | MAIL_USERNAME=null 53 | MAIL_PASSWORD=null 54 | MAIL_ENCRYPTION=null 55 | MAIL_FROM_ADDRESS="hello@example.com" 56 | MAIL_FROM_NAME="${APP_NAME}" 57 | 58 | AWS_ACCESS_KEY_ID= 59 | AWS_SECRET_ACCESS_KEY= 60 | AWS_DEFAULT_REGION=us-east-1 61 | AWS_BUCKET= 62 | AWS_USE_PATH_STYLE_ENDPOINT=false 63 | 64 | VITE_APP_NAME="${APP_NAME}" 65 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 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 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /node_modules 3 | /public/build 4 | /public/hot 5 | /public/storage 6 | /storage/*.key 7 | storage/debugbar 8 | /vendor 9 | .env 10 | .env.backup 11 | .env.production 12 | .phpunit.result.cache 13 | Homestead.json 14 | Homestead.yaml 15 | auth.json 16 | npm-debug.log 17 | yarn-error.log 18 | /.fleet 19 | /.idea 20 | /.vscode 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Laravel Logo

2 | 3 |

4 | Build Status 5 | Total Downloads 6 | Latest Stable Version 7 | License 8 |

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 | - **[WebReinvent](https://webreinvent.com/)** 41 | - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** 42 | - **[64 Robots](https://64robots.com)** 43 | - **[Curotec](https://www.curotec.com/services/technologies/laravel/)** 44 | - **[Cyber-Duck](https://cyber-duck.co.uk)** 45 | - **[DevSquad](https://devsquad.com/hire-laravel-developers)** 46 | - **[Jump24](https://jump24.co.uk)** 47 | - **[Redberry](https://redberry.international/laravel/)** 48 | - **[Active Logic](https://activelogic.com)** 49 | - **[byte5](https://byte5.de)** 50 | - **[OP.GG](https://op.gg)** 51 | 52 | ## Contributing 53 | 54 | Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). 55 | 56 | ## Code of Conduct 57 | 58 | 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). 59 | 60 | ## Security Vulnerabilities 61 | 62 | 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. 63 | 64 | ## License 65 | 66 | The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). 67 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | latest()->simplePaginate(3); 15 | 16 | return view('jobs.index', [ 17 | 'jobs' => $jobs 18 | ]); 19 | } 20 | 21 | public function create() 22 | { 23 | return view('jobs.create'); 24 | } 25 | 26 | public function show(Job $job) 27 | { 28 | return view('jobs.show', ['job' => $job]); 29 | } 30 | 31 | public function store() 32 | { 33 | request()->validate([ 34 | 'title' => ['required', 'min:3'], 35 | 'salary' => ['required'] 36 | ]); 37 | 38 | $job = Job::create([ 39 | 'title' => request('title'), 40 | 'salary' => request('salary'), 41 | 'employer_id' => 1 42 | ]); 43 | 44 | Mail::to($job->employer->user)->queue( 45 | new JobPosted($job) 46 | ); 47 | 48 | return redirect('/jobs'); 49 | } 50 | 51 | public function edit(Job $job) 52 | { 53 | return view('jobs.edit', ['job' => $job]); 54 | } 55 | 56 | public function update(Job $job) 57 | { 58 | Gate::authorize('edit-job', $job); 59 | 60 | request()->validate([ 61 | 'title' => ['required', 'min:3'], 62 | 'salary' => ['required'] 63 | ]); 64 | 65 | $job->update([ 66 | 'title' => request('title'), 67 | 'salary' => request('salary'), 68 | ]); 69 | 70 | return redirect('/jobs/' . $job->id); 71 | } 72 | 73 | public function destroy(Job $job) 74 | { 75 | Gate::authorize('edit-job', $job); 76 | 77 | $job->delete(); 78 | 79 | return redirect('/jobs'); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /app/Http/Controllers/RegisteredUserController.php: -------------------------------------------------------------------------------- 1 | validate([ 20 | 'first_name' => ['required'], 21 | 'last_name' => ['required'], 22 | 'email' => ['required', 'email'], 23 | 'password' => ['required', Password::min(6), 'confirmed'] 24 | ]); 25 | 26 | $user = User::create($attributes); 27 | 28 | Auth::login($user); 29 | 30 | return redirect('/jobs'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Controllers/SessionController.php: -------------------------------------------------------------------------------- 1 | validate([ 18 | 'email' => ['required', 'email'], 19 | 'password' => ['required'] 20 | ]); 21 | 22 | if (! Auth::attempt($attributes)) { 23 | throw ValidationException::withMessages([ 24 | 'email' => 'Sorry, those credentials do not match.' 25 | ]); 26 | } 27 | 28 | request()->session()->regenerate(); 29 | 30 | return redirect('/jobs'); 31 | } 32 | 33 | public function destroy() 34 | { 35 | Auth::logout(); 36 | 37 | return redirect('/'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Jobs/TranslateJob.php: -------------------------------------------------------------------------------- 1 | jobListing->title . ' to Spanish.'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Mail/JobPosted.php: -------------------------------------------------------------------------------- 1 | 50 | */ 51 | public function attachments(): array 52 | { 53 | return []; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /app/Models/Employer.php: -------------------------------------------------------------------------------- 1 | hasMany(Job::class); 16 | } 17 | 18 | public function user(): BelongsTo 19 | { 20 | return $this->belongsTo(User::class); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Models/Job.php: -------------------------------------------------------------------------------- 1 | belongsTo(Employer::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | protected $hidden = [ 22 | 'password', 23 | 'remember_token', 24 | ]; 25 | 26 | /** 27 | * Get the attributes that should be cast. 28 | * 29 | * @return array 30 | */ 31 | protected function casts(): array 32 | { 33 | return [ 34 | 'email_verified_at' => 'datetime', 35 | 'password' => 'hashed', 36 | ]; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /app/Policies/JobPolicy.php: -------------------------------------------------------------------------------- 1 | employer->user->is($user); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | employer->user->is($user); 31 | // }); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/View/Components/Layout.php: -------------------------------------------------------------------------------- 1 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | 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(); 19 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- 1 | 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' => env('APP_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 | ]; 127 | -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- 1 | [ 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 amount 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 | ]; 116 | -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | 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: "apc", "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 | 'table' => env('DB_CACHE_TABLE', 'cache'), 44 | 'connection' => env('DB_CACHE_CONNECTION', null), 45 | 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION', null), 46 | ], 47 | 48 | 'file' => [ 49 | 'driver' => 'file', 50 | 'path' => storage_path('framework/cache/data'), 51 | 'lock_path' => storage_path('framework/cache/data'), 52 | ], 53 | 54 | 'memcached' => [ 55 | 'driver' => 'memcached', 56 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 57 | 'sasl' => [ 58 | env('MEMCACHED_USERNAME'), 59 | env('MEMCACHED_PASSWORD'), 60 | ], 61 | 'options' => [ 62 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 63 | ], 64 | 'servers' => [ 65 | [ 66 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 67 | 'port' => env('MEMCACHED_PORT', 11211), 68 | 'weight' => 100, 69 | ], 70 | ], 71 | ], 72 | 73 | 'redis' => [ 74 | 'driver' => 'redis', 75 | 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 76 | 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), 77 | ], 78 | 79 | 'dynamodb' => [ 80 | 'driver' => 'dynamodb', 81 | 'key' => env('AWS_ACCESS_KEY_ID'), 82 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 83 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 84 | 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 85 | 'endpoint' => env('DYNAMODB_ENDPOINT'), 86 | ], 87 | 88 | 'octane' => [ 89 | 'driver' => 'octane', 90 | ], 91 | 92 | ], 93 | 94 | /* 95 | |-------------------------------------------------------------------------- 96 | | Cache Key Prefix 97 | |-------------------------------------------------------------------------- 98 | | 99 | | When utilizing the APC, database, memcached, Redis, and DynamoDB cache 100 | | stores, there might be other applications using the same cache. For 101 | | that reason, you may prefix every cache key to avoid collisions. 102 | | 103 | */ 104 | 105 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), 106 | 107 | ]; 108 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | 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 | ], 41 | 42 | 'mysql' => [ 43 | 'driver' => 'mysql', 44 | 'url' => env('DB_URL'), 45 | 'host' => env('DB_HOST', '127.0.0.1'), 46 | 'port' => env('DB_PORT', '3306'), 47 | 'database' => env('DB_DATABASE', 'laravel'), 48 | 'username' => env('DB_USERNAME', 'root'), 49 | 'password' => env('DB_PASSWORD', ''), 50 | 'unix_socket' => env('DB_SOCKET', ''), 51 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 52 | 'collation' => env('DB_COLLATION', 'utf8mb4_0900_ai_ci'), 53 | 'prefix' => '', 54 | 'prefix_indexes' => true, 55 | 'strict' => true, 56 | 'engine' => null, 57 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 58 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 59 | ]) : [], 60 | ], 61 | 62 | 'mariadb' => [ 63 | 'driver' => 'mariadb', 64 | 'url' => env('DB_URL'), 65 | 'host' => env('DB_HOST', '127.0.0.1'), 66 | 'port' => env('DB_PORT', '3306'), 67 | 'database' => env('DB_DATABASE', 'laravel'), 68 | 'username' => env('DB_USERNAME', 'root'), 69 | 'password' => env('DB_PASSWORD', ''), 70 | 'unix_socket' => env('DB_SOCKET', ''), 71 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 72 | 'collation' => env('DB_COLLATION', 'utf8mb4_uca1400_ai_ci'), 73 | 'prefix' => '', 74 | 'prefix_indexes' => true, 75 | 'strict' => true, 76 | 'engine' => null, 77 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 78 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 79 | ]) : [], 80 | ], 81 | 82 | 'pgsql' => [ 83 | 'driver' => 'pgsql', 84 | 'url' => env('DB_URL'), 85 | 'host' => env('DB_HOST', '127.0.0.1'), 86 | 'port' => env('DB_PORT', '5432'), 87 | 'database' => env('DB_DATABASE', 'laravel'), 88 | 'username' => env('DB_USERNAME', 'root'), 89 | 'password' => env('DB_PASSWORD', ''), 90 | 'charset' => env('DB_CHARSET', 'utf8'), 91 | 'prefix' => '', 92 | 'prefix_indexes' => true, 93 | 'search_path' => 'public', 94 | 'sslmode' => 'prefer', 95 | ], 96 | 97 | 'sqlsrv' => [ 98 | 'driver' => 'sqlsrv', 99 | 'url' => env('DB_URL'), 100 | 'host' => env('DB_HOST', 'localhost'), 101 | 'port' => env('DB_PORT', '1433'), 102 | 'database' => env('DB_DATABASE', 'laravel'), 103 | 'username' => env('DB_USERNAME', 'root'), 104 | 'password' => env('DB_PASSWORD', ''), 105 | 'charset' => env('DB_CHARSET', 'utf8'), 106 | 'prefix' => '', 107 | 'prefix_indexes' => true, 108 | // 'encrypt' => env('DB_ENCRYPT', 'yes'), 109 | // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), 110 | ], 111 | 112 | ], 113 | 114 | /* 115 | |-------------------------------------------------------------------------- 116 | | Migration Repository Table 117 | |-------------------------------------------------------------------------- 118 | | 119 | | This table keeps track of all the migrations that have already run for 120 | | your application. Using this information, we can determine which of 121 | | the migrations on disk haven't actually been run on the database. 122 | | 123 | */ 124 | 125 | 'migrations' => [ 126 | 'table' => 'migrations', 127 | 'update_date_on_publish' => true, 128 | ], 129 | 130 | /* 131 | |-------------------------------------------------------------------------- 132 | | Redis Databases 133 | |-------------------------------------------------------------------------- 134 | | 135 | | Redis is an open source, fast, and advanced key-value store that also 136 | | provides a richer body of commands than a typical key-value system 137 | | such as Memcached. You may define your connection settings here. 138 | | 139 | */ 140 | 141 | 'redis' => [ 142 | 143 | 'client' => env('REDIS_CLIENT', 'phpredis'), 144 | 145 | 'options' => [ 146 | 'cluster' => env('REDIS_CLUSTER', 'redis'), 147 | 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), 148 | ], 149 | 150 | 'default' => [ 151 | 'url' => env('REDIS_URL'), 152 | 'host' => env('REDIS_HOST', '127.0.0.1'), 153 | 'username' => env('REDIS_USERNAME'), 154 | 'password' => env('REDIS_PASSWORD'), 155 | 'port' => env('REDIS_PORT', '6379'), 156 | 'database' => env('REDIS_DB', '0'), 157 | ], 158 | 159 | 'cache' => [ 160 | 'url' => env('REDIS_URL'), 161 | 'host' => env('REDIS_HOST', '127.0.0.1'), 162 | 'username' => env('REDIS_USERNAME'), 163 | 'password' => env('REDIS_PASSWORD'), 164 | 'port' => env('REDIS_PORT', '6379'), 165 | 'database' => env('REDIS_CACHE_DB', '1'), 166 | ], 167 | 168 | ], 169 | 170 | ]; 171 | -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- 1 | 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'), 36 | 'throw' => false, 37 | ], 38 | 39 | 'public' => [ 40 | 'driver' => 'local', 41 | 'root' => storage_path('app/public'), 42 | 'url' => env('APP_URL').'/storage', 43 | 'visibility' => 'public', 44 | 'throw' => false, 45 | ], 46 | 47 | 's3' => [ 48 | 'driver' => 's3', 49 | 'key' => env('AWS_ACCESS_KEY_ID'), 50 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 51 | 'region' => env('AWS_DEFAULT_REGION'), 52 | 'bucket' => env('AWS_BUCKET'), 53 | 'url' => env('AWS_URL'), 54 | 'endpoint' => env('AWS_ENDPOINT'), 55 | 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 56 | 'throw' => false, 57 | ], 58 | 59 | ], 60 | 61 | /* 62 | |-------------------------------------------------------------------------- 63 | | Symbolic Links 64 | |-------------------------------------------------------------------------- 65 | | 66 | | Here you may configure the symbolic links that will be created when the 67 | | `storage:link` Artisan command is executed. The array keys should be 68 | | the locations of the links and the values should be their targets. 69 | | 70 | */ 71 | 72 | 'links' => [ 73 | public_path('storage') => storage_path('app/public'), 74 | ], 75 | 76 | ]; 77 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | 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 | 'formatter' => env('LOG_STDERR_FORMATTER'), 102 | 'with' => [ 103 | 'stream' => 'php://stderr', 104 | ], 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 | ]; 133 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- 1 | 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", "log", "array", "failover", "roundrobin" 34 | | 35 | */ 36 | 37 | 'mailers' => [ 38 | 39 | 'smtp' => [ 40 | 'transport' => 'smtp', 41 | 'url' => env('MAIL_URL'), 42 | 'host' => env('MAIL_HOST', '127.0.0.1'), 43 | 'port' => env('MAIL_PORT', 2525), 44 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 45 | 'username' => env('MAIL_USERNAME'), 46 | 'password' => env('MAIL_PASSWORD'), 47 | 'timeout' => null, 48 | 'local_domain' => env('MAIL_EHLO_DOMAIN'), 49 | ], 50 | 51 | 'ses' => [ 52 | 'transport' => 'ses', 53 | ], 54 | 55 | 'postmark' => [ 56 | 'transport' => 'postmark', 57 | // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), 58 | // 'client' => [ 59 | // 'timeout' => 5, 60 | // ], 61 | ], 62 | 63 | 'sendmail' => [ 64 | 'transport' => 'sendmail', 65 | 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), 66 | ], 67 | 68 | 'log' => [ 69 | 'transport' => 'log', 70 | 'channel' => env('MAIL_LOG_CHANNEL'), 71 | ], 72 | 73 | 'array' => [ 74 | 'transport' => 'array', 75 | ], 76 | 77 | 'failover' => [ 78 | 'transport' => 'failover', 79 | 'mailers' => [ 80 | 'smtp', 81 | 'log', 82 | ], 83 | ], 84 | 85 | ], 86 | 87 | /* 88 | |-------------------------------------------------------------------------- 89 | | Global "From" Address 90 | |-------------------------------------------------------------------------- 91 | | 92 | | You may wish for all emails sent by your application to be sent from 93 | | the same address. Here you may specify a name and address that is 94 | | used globally for all emails that are sent by your application. 95 | | 96 | */ 97 | 98 | 'from' => [ 99 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 100 | 'name' => env('MAIL_FROM_NAME', 'Example'), 101 | ], 102 | 103 | ]; 104 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | 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', null), 40 | 'table' => env('DB_QUEUE_TABLE', 'jobs'), 41 | 'queue' => env('DB_QUEUE', 'default'), 42 | 'retry_after' => 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' => 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' => 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 | ]; 113 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 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 | 'slack' => [ 28 | 'notifications' => [ 29 | 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 30 | 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), 31 | ], 32 | ], 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- 1 | 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' => 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: "apc", "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 | 131 | 'cookie' => env( 132 | 'SESSION_COOKIE', 133 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 134 | ), 135 | 136 | /* 137 | |-------------------------------------------------------------------------- 138 | | Session Cookie Path 139 | |-------------------------------------------------------------------------- 140 | | 141 | | The session cookie path determines the path for which the cookie will 142 | | be regarded as available. Typically, this will be the root path of 143 | | your application, but you're free to change this when necessary. 144 | | 145 | */ 146 | 147 | 'path' => env('SESSION_PATH', '/'), 148 | 149 | /* 150 | |-------------------------------------------------------------------------- 151 | | Session Cookie Domain 152 | |-------------------------------------------------------------------------- 153 | | 154 | | This value determines the domain and subdomains the session cookie is 155 | | available to. By default, the cookie will be available to the root 156 | | domain and all subdomains. Typically, this shouldn't be changed. 157 | | 158 | */ 159 | 160 | 'domain' => env('SESSION_DOMAIN'), 161 | 162 | /* 163 | |-------------------------------------------------------------------------- 164 | | HTTPS Only Cookies 165 | |-------------------------------------------------------------------------- 166 | | 167 | | By setting this option to true, session cookies will only be sent back 168 | | to the server if the browser has a HTTPS connection. This will keep 169 | | the cookie from being sent to you when it can't be done securely. 170 | | 171 | */ 172 | 173 | 'secure' => env('SESSION_SECURE_COOKIE'), 174 | 175 | /* 176 | |-------------------------------------------------------------------------- 177 | | HTTP Access Only 178 | |-------------------------------------------------------------------------- 179 | | 180 | | Setting this value to true will prevent JavaScript from accessing the 181 | | value of the cookie and the cookie will only be accessible through 182 | | the HTTP protocol. It's unlikely you should disable this option. 183 | | 184 | */ 185 | 186 | 'http_only' => env('SESSION_HTTP_ONLY', true), 187 | 188 | /* 189 | |-------------------------------------------------------------------------- 190 | | Same-Site Cookies 191 | |-------------------------------------------------------------------------- 192 | | 193 | | This option determines how your cookies behave when cross-site requests 194 | | take place, and can be used to mitigate CSRF attacks. By default, we 195 | | will set this value to "lax" to permit secure cross-site requests. 196 | | 197 | | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value 198 | | 199 | | Supported: "lax", "strict", "none", null 200 | | 201 | */ 202 | 203 | 'same_site' => env('SESSION_SAME_SITE', 'lax'), 204 | 205 | /* 206 | |-------------------------------------------------------------------------- 207 | | Partitioned Cookies 208 | |-------------------------------------------------------------------------- 209 | | 210 | | Setting this value to true will tie the cookie to the top-level site for 211 | | a cross-site context. Partitioned cookies are accepted by the browser 212 | | when flagged "secure" and the Same-Site attribute is set to "none". 213 | | 214 | */ 215 | 216 | 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), 217 | 218 | ]; 219 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/EmployerFactory.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | class EmployerFactory extends Factory 12 | { 13 | /** 14 | * Define the model's default state. 15 | * 16 | * @return array 17 | */ 18 | public function definition(): array 19 | { 20 | return [ 21 | 'name' => fake()->company(), 22 | 'user_id' => User::factory() 23 | ]; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /database/factories/JobFactory.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | class JobFactory extends Factory 12 | { 13 | /** 14 | * Define the model's default state. 15 | * 16 | * @return array 17 | */ 18 | public function definition(): array 19 | { 20 | return [ 21 | 'title' => fake()->jobTitle(), 22 | 'employer_id' => Employer::factory(), 23 | 'salary' => '$50,000 USD' 24 | ]; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | 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 23 | */ 24 | public function definition(): array 25 | { 26 | return [ 27 | 'first_name' => fake()->firstName(), 28 | 'last_name' => fake()->lastName(), 29 | 'email' => fake()->unique()->safeEmail(), 30 | 'email_verified_at' => now(), 31 | 'password' => static::$password ??= Hash::make('password'), 32 | 'remember_token' => Str::random(10), 33 | ]; 34 | } 35 | 36 | /** 37 | * Indicate that the model's email address should be unverified. 38 | */ 39 | public function unverified(): static 40 | { 41 | return $this->state(fn (array $attributes) => [ 42 | 'email_verified_at' => null, 43 | ]); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('first_name'); 17 | $table->string('last_name'); 18 | $table->string('email')->unique(); 19 | $table->timestamp('email_verified_at')->nullable(); 20 | $table->string('password'); 21 | $table->rememberToken(); 22 | $table->timestamps(); 23 | }); 24 | 25 | Schema::create('password_reset_tokens', function (Blueprint $table) { 26 | $table->string('email')->primary(); 27 | $table->string('token'); 28 | $table->timestamp('created_at')->nullable(); 29 | }); 30 | 31 | Schema::create('sessions', function (Blueprint $table) { 32 | $table->string('id')->primary(); 33 | $table->foreignId('user_id')->nullable()->index(); 34 | $table->string('ip_address', 45)->nullable(); 35 | $table->text('user_agent')->nullable(); 36 | $table->longText('payload'); 37 | $table->integer('last_activity')->index(); 38 | }); 39 | } 40 | 41 | /** 42 | * Reverse the migrations. 43 | */ 44 | public function down(): void 45 | { 46 | Schema::dropIfExists('users'); 47 | Schema::dropIfExists('password_reset_tokens'); 48 | Schema::dropIfExists('sessions'); 49 | } 50 | }; 51 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- 1 | 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 | }; 36 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- 1 | 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 | }; 58 | -------------------------------------------------------------------------------- /database/migrations/2024_03_21_151800_create_job_listings_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | // $table->unsignedBigInteger('employer_id'); 17 | $table->foreignIdFor(\App\Models\Employer::class); 18 | $table->string('title'); 19 | $table->string('salary'); 20 | $table->timestamps(); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | */ 27 | public function down(): void 28 | { 29 | Schema::dropIfExists('job_listings'); 30 | } 31 | }; 32 | -------------------------------------------------------------------------------- /database/migrations/2024_03_25_144504_create_employers_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->foreignIdFor(\App\Models\User::class); 17 | $table->string('name'); 18 | $table->timestamps(); 19 | }); 20 | } 21 | 22 | /** 23 | * Reverse the migrations. 24 | */ 25 | public function down(): void 26 | { 27 | Schema::dropIfExists('employers'); 28 | } 29 | }; 30 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create([ 18 | 'first_name' => 'John', 19 | 'last_name' => 'Doe', 20 | 'email' => 'test@example.com', 21 | ]); 22 | 23 | $this->call(JobSeeder::class); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /database/seeders/JobSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "devDependencies": { 8 | "autoprefixer": "^10.4.19", 9 | "axios": "^1.6.4", 10 | "laravel-vite-plugin": "^1.0", 11 | "postcss": "^8.4.38", 12 | "tailwindcss": "^3.4.3", 13 | "vite": "^5.0" 14 | } 15 | }, 16 | "node_modules/@alloc/quick-lru": { 17 | "version": "5.2.0", 18 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 19 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 20 | "dev": true, 21 | "engines": { 22 | "node": ">=10" 23 | }, 24 | "funding": { 25 | "url": "https://github.com/sponsors/sindresorhus" 26 | } 27 | }, 28 | "node_modules/@esbuild/darwin-arm64": { 29 | "version": "0.20.2", 30 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", 31 | "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", 32 | "cpu": [ 33 | "arm64" 34 | ], 35 | "dev": true, 36 | "optional": true, 37 | "os": [ 38 | "darwin" 39 | ], 40 | "engines": { 41 | "node": ">=12" 42 | } 43 | }, 44 | "node_modules/@isaacs/cliui": { 45 | "version": "8.0.2", 46 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 47 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 48 | "dev": true, 49 | "dependencies": { 50 | "string-width": "^5.1.2", 51 | "string-width-cjs": "npm:string-width@^4.2.0", 52 | "strip-ansi": "^7.0.1", 53 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 54 | "wrap-ansi": "^8.1.0", 55 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 56 | }, 57 | "engines": { 58 | "node": ">=12" 59 | } 60 | }, 61 | "node_modules/@jridgewell/gen-mapping": { 62 | "version": "0.3.5", 63 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 64 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 65 | "dev": true, 66 | "dependencies": { 67 | "@jridgewell/set-array": "^1.2.1", 68 | "@jridgewell/sourcemap-codec": "^1.4.10", 69 | "@jridgewell/trace-mapping": "^0.3.24" 70 | }, 71 | "engines": { 72 | "node": ">=6.0.0" 73 | } 74 | }, 75 | "node_modules/@jridgewell/resolve-uri": { 76 | "version": "3.1.2", 77 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 78 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 79 | "dev": true, 80 | "engines": { 81 | "node": ">=6.0.0" 82 | } 83 | }, 84 | "node_modules/@jridgewell/set-array": { 85 | "version": "1.2.1", 86 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 87 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 88 | "dev": true, 89 | "engines": { 90 | "node": ">=6.0.0" 91 | } 92 | }, 93 | "node_modules/@jridgewell/sourcemap-codec": { 94 | "version": "1.4.15", 95 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 96 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 97 | "dev": true 98 | }, 99 | "node_modules/@jridgewell/trace-mapping": { 100 | "version": "0.3.25", 101 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 102 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 103 | "dev": true, 104 | "dependencies": { 105 | "@jridgewell/resolve-uri": "^3.1.0", 106 | "@jridgewell/sourcemap-codec": "^1.4.14" 107 | } 108 | }, 109 | "node_modules/@nodelib/fs.scandir": { 110 | "version": "2.1.5", 111 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 112 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 113 | "dev": true, 114 | "dependencies": { 115 | "@nodelib/fs.stat": "2.0.5", 116 | "run-parallel": "^1.1.9" 117 | }, 118 | "engines": { 119 | "node": ">= 8" 120 | } 121 | }, 122 | "node_modules/@nodelib/fs.stat": { 123 | "version": "2.0.5", 124 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 125 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 126 | "dev": true, 127 | "engines": { 128 | "node": ">= 8" 129 | } 130 | }, 131 | "node_modules/@nodelib/fs.walk": { 132 | "version": "1.2.8", 133 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 134 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 135 | "dev": true, 136 | "dependencies": { 137 | "@nodelib/fs.scandir": "2.1.5", 138 | "fastq": "^1.6.0" 139 | }, 140 | "engines": { 141 | "node": ">= 8" 142 | } 143 | }, 144 | "node_modules/@pkgjs/parseargs": { 145 | "version": "0.11.0", 146 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 147 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 148 | "dev": true, 149 | "optional": true, 150 | "engines": { 151 | "node": ">=14" 152 | } 153 | }, 154 | "node_modules/@rollup/rollup-darwin-arm64": { 155 | "version": "4.14.1", 156 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.1.tgz", 157 | "integrity": "sha512-+kecg3FY84WadgcuSVm6llrABOdQAEbNdnpi5X3UwWiFVhZIZvKgGrF7kmLguvxHNQy+UuRV66cLVl3S+Rkt+Q==", 158 | "cpu": [ 159 | "arm64" 160 | ], 161 | "dev": true, 162 | "optional": true, 163 | "os": [ 164 | "darwin" 165 | ] 166 | }, 167 | "node_modules/@types/estree": { 168 | "version": "1.0.5", 169 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 170 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 171 | "dev": true 172 | }, 173 | "node_modules/ansi-regex": { 174 | "version": "6.0.1", 175 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 176 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 177 | "dev": true, 178 | "engines": { 179 | "node": ">=12" 180 | }, 181 | "funding": { 182 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 183 | } 184 | }, 185 | "node_modules/ansi-styles": { 186 | "version": "6.2.1", 187 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 188 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 189 | "dev": true, 190 | "engines": { 191 | "node": ">=12" 192 | }, 193 | "funding": { 194 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 195 | } 196 | }, 197 | "node_modules/any-promise": { 198 | "version": "1.3.0", 199 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 200 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 201 | "dev": true 202 | }, 203 | "node_modules/anymatch": { 204 | "version": "3.1.3", 205 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 206 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 207 | "dev": true, 208 | "dependencies": { 209 | "normalize-path": "^3.0.0", 210 | "picomatch": "^2.0.4" 211 | }, 212 | "engines": { 213 | "node": ">= 8" 214 | } 215 | }, 216 | "node_modules/arg": { 217 | "version": "5.0.2", 218 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 219 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 220 | "dev": true 221 | }, 222 | "node_modules/asynckit": { 223 | "version": "0.4.0", 224 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 225 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 226 | "dev": true 227 | }, 228 | "node_modules/autoprefixer": { 229 | "version": "10.4.19", 230 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", 231 | "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", 232 | "dev": true, 233 | "funding": [ 234 | { 235 | "type": "opencollective", 236 | "url": "https://opencollective.com/postcss/" 237 | }, 238 | { 239 | "type": "tidelift", 240 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 241 | }, 242 | { 243 | "type": "github", 244 | "url": "https://github.com/sponsors/ai" 245 | } 246 | ], 247 | "dependencies": { 248 | "browserslist": "^4.23.0", 249 | "caniuse-lite": "^1.0.30001599", 250 | "fraction.js": "^4.3.7", 251 | "normalize-range": "^0.1.2", 252 | "picocolors": "^1.0.0", 253 | "postcss-value-parser": "^4.2.0" 254 | }, 255 | "bin": { 256 | "autoprefixer": "bin/autoprefixer" 257 | }, 258 | "engines": { 259 | "node": "^10 || ^12 || >=14" 260 | }, 261 | "peerDependencies": { 262 | "postcss": "^8.1.0" 263 | } 264 | }, 265 | "node_modules/axios": { 266 | "version": "1.6.8", 267 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", 268 | "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", 269 | "dev": true, 270 | "dependencies": { 271 | "follow-redirects": "^1.15.6", 272 | "form-data": "^4.0.0", 273 | "proxy-from-env": "^1.1.0" 274 | } 275 | }, 276 | "node_modules/balanced-match": { 277 | "version": "1.0.2", 278 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 279 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 280 | "dev": true 281 | }, 282 | "node_modules/binary-extensions": { 283 | "version": "2.3.0", 284 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 285 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 286 | "dev": true, 287 | "engines": { 288 | "node": ">=8" 289 | }, 290 | "funding": { 291 | "url": "https://github.com/sponsors/sindresorhus" 292 | } 293 | }, 294 | "node_modules/brace-expansion": { 295 | "version": "2.0.1", 296 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 297 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 298 | "dev": true, 299 | "dependencies": { 300 | "balanced-match": "^1.0.0" 301 | } 302 | }, 303 | "node_modules/braces": { 304 | "version": "3.0.2", 305 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 306 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 307 | "dev": true, 308 | "dependencies": { 309 | "fill-range": "^7.0.1" 310 | }, 311 | "engines": { 312 | "node": ">=8" 313 | } 314 | }, 315 | "node_modules/browserslist": { 316 | "version": "4.23.0", 317 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", 318 | "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", 319 | "dev": true, 320 | "funding": [ 321 | { 322 | "type": "opencollective", 323 | "url": "https://opencollective.com/browserslist" 324 | }, 325 | { 326 | "type": "tidelift", 327 | "url": "https://tidelift.com/funding/github/npm/browserslist" 328 | }, 329 | { 330 | "type": "github", 331 | "url": "https://github.com/sponsors/ai" 332 | } 333 | ], 334 | "dependencies": { 335 | "caniuse-lite": "^1.0.30001587", 336 | "electron-to-chromium": "^1.4.668", 337 | "node-releases": "^2.0.14", 338 | "update-browserslist-db": "^1.0.13" 339 | }, 340 | "bin": { 341 | "browserslist": "cli.js" 342 | }, 343 | "engines": { 344 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 345 | } 346 | }, 347 | "node_modules/camelcase-css": { 348 | "version": "2.0.1", 349 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 350 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 351 | "dev": true, 352 | "engines": { 353 | "node": ">= 6" 354 | } 355 | }, 356 | "node_modules/caniuse-lite": { 357 | "version": "1.0.30001612", 358 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz", 359 | "integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==", 360 | "dev": true, 361 | "funding": [ 362 | { 363 | "type": "opencollective", 364 | "url": "https://opencollective.com/browserslist" 365 | }, 366 | { 367 | "type": "tidelift", 368 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 369 | }, 370 | { 371 | "type": "github", 372 | "url": "https://github.com/sponsors/ai" 373 | } 374 | ] 375 | }, 376 | "node_modules/chokidar": { 377 | "version": "3.6.0", 378 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 379 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 380 | "dev": true, 381 | "dependencies": { 382 | "anymatch": "~3.1.2", 383 | "braces": "~3.0.2", 384 | "glob-parent": "~5.1.2", 385 | "is-binary-path": "~2.1.0", 386 | "is-glob": "~4.0.1", 387 | "normalize-path": "~3.0.0", 388 | "readdirp": "~3.6.0" 389 | }, 390 | "engines": { 391 | "node": ">= 8.10.0" 392 | }, 393 | "funding": { 394 | "url": "https://paulmillr.com/funding/" 395 | }, 396 | "optionalDependencies": { 397 | "fsevents": "~2.3.2" 398 | } 399 | }, 400 | "node_modules/chokidar/node_modules/glob-parent": { 401 | "version": "5.1.2", 402 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 403 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 404 | "dev": true, 405 | "dependencies": { 406 | "is-glob": "^4.0.1" 407 | }, 408 | "engines": { 409 | "node": ">= 6" 410 | } 411 | }, 412 | "node_modules/color-convert": { 413 | "version": "2.0.1", 414 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 415 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 416 | "dev": true, 417 | "dependencies": { 418 | "color-name": "~1.1.4" 419 | }, 420 | "engines": { 421 | "node": ">=7.0.0" 422 | } 423 | }, 424 | "node_modules/color-name": { 425 | "version": "1.1.4", 426 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 427 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 428 | "dev": true 429 | }, 430 | "node_modules/combined-stream": { 431 | "version": "1.0.8", 432 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 433 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 434 | "dev": true, 435 | "dependencies": { 436 | "delayed-stream": "~1.0.0" 437 | }, 438 | "engines": { 439 | "node": ">= 0.8" 440 | } 441 | }, 442 | "node_modules/commander": { 443 | "version": "4.1.1", 444 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 445 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 446 | "dev": true, 447 | "engines": { 448 | "node": ">= 6" 449 | } 450 | }, 451 | "node_modules/cross-spawn": { 452 | "version": "7.0.3", 453 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 454 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 455 | "dev": true, 456 | "dependencies": { 457 | "path-key": "^3.1.0", 458 | "shebang-command": "^2.0.0", 459 | "which": "^2.0.1" 460 | }, 461 | "engines": { 462 | "node": ">= 8" 463 | } 464 | }, 465 | "node_modules/cssesc": { 466 | "version": "3.0.0", 467 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 468 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 469 | "dev": true, 470 | "bin": { 471 | "cssesc": "bin/cssesc" 472 | }, 473 | "engines": { 474 | "node": ">=4" 475 | } 476 | }, 477 | "node_modules/delayed-stream": { 478 | "version": "1.0.0", 479 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 480 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 481 | "dev": true, 482 | "engines": { 483 | "node": ">=0.4.0" 484 | } 485 | }, 486 | "node_modules/didyoumean": { 487 | "version": "1.2.2", 488 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 489 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 490 | "dev": true 491 | }, 492 | "node_modules/dlv": { 493 | "version": "1.1.3", 494 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 495 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 496 | "dev": true 497 | }, 498 | "node_modules/eastasianwidth": { 499 | "version": "0.2.0", 500 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 501 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 502 | "dev": true 503 | }, 504 | "node_modules/electron-to-chromium": { 505 | "version": "1.4.749", 506 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.749.tgz", 507 | "integrity": "sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==", 508 | "dev": true 509 | }, 510 | "node_modules/emoji-regex": { 511 | "version": "9.2.2", 512 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 513 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 514 | "dev": true 515 | }, 516 | "node_modules/esbuild": { 517 | "version": "0.20.2", 518 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", 519 | "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", 520 | "dev": true, 521 | "hasInstallScript": true, 522 | "bin": { 523 | "esbuild": "bin/esbuild" 524 | }, 525 | "engines": { 526 | "node": ">=12" 527 | }, 528 | "optionalDependencies": { 529 | "@esbuild/aix-ppc64": "0.20.2", 530 | "@esbuild/android-arm": "0.20.2", 531 | "@esbuild/android-arm64": "0.20.2", 532 | "@esbuild/android-x64": "0.20.2", 533 | "@esbuild/darwin-arm64": "0.20.2", 534 | "@esbuild/darwin-x64": "0.20.2", 535 | "@esbuild/freebsd-arm64": "0.20.2", 536 | "@esbuild/freebsd-x64": "0.20.2", 537 | "@esbuild/linux-arm": "0.20.2", 538 | "@esbuild/linux-arm64": "0.20.2", 539 | "@esbuild/linux-ia32": "0.20.2", 540 | "@esbuild/linux-loong64": "0.20.2", 541 | "@esbuild/linux-mips64el": "0.20.2", 542 | "@esbuild/linux-ppc64": "0.20.2", 543 | "@esbuild/linux-riscv64": "0.20.2", 544 | "@esbuild/linux-s390x": "0.20.2", 545 | "@esbuild/linux-x64": "0.20.2", 546 | "@esbuild/netbsd-x64": "0.20.2", 547 | "@esbuild/openbsd-x64": "0.20.2", 548 | "@esbuild/sunos-x64": "0.20.2", 549 | "@esbuild/win32-arm64": "0.20.2", 550 | "@esbuild/win32-ia32": "0.20.2", 551 | "@esbuild/win32-x64": "0.20.2" 552 | } 553 | }, 554 | "node_modules/escalade": { 555 | "version": "3.1.2", 556 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 557 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 558 | "dev": true, 559 | "engines": { 560 | "node": ">=6" 561 | } 562 | }, 563 | "node_modules/fast-glob": { 564 | "version": "3.3.2", 565 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 566 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 567 | "dev": true, 568 | "dependencies": { 569 | "@nodelib/fs.stat": "^2.0.2", 570 | "@nodelib/fs.walk": "^1.2.3", 571 | "glob-parent": "^5.1.2", 572 | "merge2": "^1.3.0", 573 | "micromatch": "^4.0.4" 574 | }, 575 | "engines": { 576 | "node": ">=8.6.0" 577 | } 578 | }, 579 | "node_modules/fast-glob/node_modules/glob-parent": { 580 | "version": "5.1.2", 581 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 582 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 583 | "dev": true, 584 | "dependencies": { 585 | "is-glob": "^4.0.1" 586 | }, 587 | "engines": { 588 | "node": ">= 6" 589 | } 590 | }, 591 | "node_modules/fastq": { 592 | "version": "1.17.1", 593 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 594 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 595 | "dev": true, 596 | "dependencies": { 597 | "reusify": "^1.0.4" 598 | } 599 | }, 600 | "node_modules/fill-range": { 601 | "version": "7.0.1", 602 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 603 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 604 | "dev": true, 605 | "dependencies": { 606 | "to-regex-range": "^5.0.1" 607 | }, 608 | "engines": { 609 | "node": ">=8" 610 | } 611 | }, 612 | "node_modules/follow-redirects": { 613 | "version": "1.15.6", 614 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", 615 | "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", 616 | "dev": true, 617 | "funding": [ 618 | { 619 | "type": "individual", 620 | "url": "https://github.com/sponsors/RubenVerborgh" 621 | } 622 | ], 623 | "engines": { 624 | "node": ">=4.0" 625 | }, 626 | "peerDependenciesMeta": { 627 | "debug": { 628 | "optional": true 629 | } 630 | } 631 | }, 632 | "node_modules/foreground-child": { 633 | "version": "3.1.1", 634 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", 635 | "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", 636 | "dev": true, 637 | "dependencies": { 638 | "cross-spawn": "^7.0.0", 639 | "signal-exit": "^4.0.1" 640 | }, 641 | "engines": { 642 | "node": ">=14" 643 | }, 644 | "funding": { 645 | "url": "https://github.com/sponsors/isaacs" 646 | } 647 | }, 648 | "node_modules/form-data": { 649 | "version": "4.0.0", 650 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 651 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 652 | "dev": true, 653 | "dependencies": { 654 | "asynckit": "^0.4.0", 655 | "combined-stream": "^1.0.8", 656 | "mime-types": "^2.1.12" 657 | }, 658 | "engines": { 659 | "node": ">= 6" 660 | } 661 | }, 662 | "node_modules/fraction.js": { 663 | "version": "4.3.7", 664 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 665 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 666 | "dev": true, 667 | "engines": { 668 | "node": "*" 669 | }, 670 | "funding": { 671 | "type": "patreon", 672 | "url": "https://github.com/sponsors/rawify" 673 | } 674 | }, 675 | "node_modules/fsevents": { 676 | "version": "2.3.3", 677 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 678 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 679 | "dev": true, 680 | "hasInstallScript": true, 681 | "optional": true, 682 | "os": [ 683 | "darwin" 684 | ], 685 | "engines": { 686 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 687 | } 688 | }, 689 | "node_modules/function-bind": { 690 | "version": "1.1.2", 691 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 692 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 693 | "dev": true, 694 | "funding": { 695 | "url": "https://github.com/sponsors/ljharb" 696 | } 697 | }, 698 | "node_modules/glob": { 699 | "version": "10.3.12", 700 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", 701 | "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", 702 | "dev": true, 703 | "dependencies": { 704 | "foreground-child": "^3.1.0", 705 | "jackspeak": "^2.3.6", 706 | "minimatch": "^9.0.1", 707 | "minipass": "^7.0.4", 708 | "path-scurry": "^1.10.2" 709 | }, 710 | "bin": { 711 | "glob": "dist/esm/bin.mjs" 712 | }, 713 | "engines": { 714 | "node": ">=16 || 14 >=14.17" 715 | }, 716 | "funding": { 717 | "url": "https://github.com/sponsors/isaacs" 718 | } 719 | }, 720 | "node_modules/glob-parent": { 721 | "version": "6.0.2", 722 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 723 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 724 | "dev": true, 725 | "dependencies": { 726 | "is-glob": "^4.0.3" 727 | }, 728 | "engines": { 729 | "node": ">=10.13.0" 730 | } 731 | }, 732 | "node_modules/hasown": { 733 | "version": "2.0.2", 734 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 735 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 736 | "dev": true, 737 | "dependencies": { 738 | "function-bind": "^1.1.2" 739 | }, 740 | "engines": { 741 | "node": ">= 0.4" 742 | } 743 | }, 744 | "node_modules/is-binary-path": { 745 | "version": "2.1.0", 746 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 747 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 748 | "dev": true, 749 | "dependencies": { 750 | "binary-extensions": "^2.0.0" 751 | }, 752 | "engines": { 753 | "node": ">=8" 754 | } 755 | }, 756 | "node_modules/is-core-module": { 757 | "version": "2.13.1", 758 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 759 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 760 | "dev": true, 761 | "dependencies": { 762 | "hasown": "^2.0.0" 763 | }, 764 | "funding": { 765 | "url": "https://github.com/sponsors/ljharb" 766 | } 767 | }, 768 | "node_modules/is-extglob": { 769 | "version": "2.1.1", 770 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 771 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 772 | "dev": true, 773 | "engines": { 774 | "node": ">=0.10.0" 775 | } 776 | }, 777 | "node_modules/is-fullwidth-code-point": { 778 | "version": "3.0.0", 779 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 780 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 781 | "dev": true, 782 | "engines": { 783 | "node": ">=8" 784 | } 785 | }, 786 | "node_modules/is-glob": { 787 | "version": "4.0.3", 788 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 789 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 790 | "dev": true, 791 | "dependencies": { 792 | "is-extglob": "^2.1.1" 793 | }, 794 | "engines": { 795 | "node": ">=0.10.0" 796 | } 797 | }, 798 | "node_modules/is-number": { 799 | "version": "7.0.0", 800 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 801 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 802 | "dev": true, 803 | "engines": { 804 | "node": ">=0.12.0" 805 | } 806 | }, 807 | "node_modules/isexe": { 808 | "version": "2.0.0", 809 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 810 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 811 | "dev": true 812 | }, 813 | "node_modules/jackspeak": { 814 | "version": "2.3.6", 815 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", 816 | "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", 817 | "dev": true, 818 | "dependencies": { 819 | "@isaacs/cliui": "^8.0.2" 820 | }, 821 | "engines": { 822 | "node": ">=14" 823 | }, 824 | "funding": { 825 | "url": "https://github.com/sponsors/isaacs" 826 | }, 827 | "optionalDependencies": { 828 | "@pkgjs/parseargs": "^0.11.0" 829 | } 830 | }, 831 | "node_modules/jiti": { 832 | "version": "1.21.0", 833 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", 834 | "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", 835 | "dev": true, 836 | "bin": { 837 | "jiti": "bin/jiti.js" 838 | } 839 | }, 840 | "node_modules/laravel-vite-plugin": { 841 | "version": "1.0.2", 842 | "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.2.tgz", 843 | "integrity": "sha512-Mcclml10khYzBVxDwJro8wnVDwD4i7XOSEMACQNnarvTnHjrjXLLL+B/Snif2wYAyElsOqagJZ7VAinb/2vF5g==", 844 | "dev": true, 845 | "dependencies": { 846 | "picocolors": "^1.0.0", 847 | "vite-plugin-full-reload": "^1.1.0" 848 | }, 849 | "bin": { 850 | "clean-orphaned-assets": "bin/clean.js" 851 | }, 852 | "engines": { 853 | "node": "^18.0.0 || >=20.0.0" 854 | }, 855 | "peerDependencies": { 856 | "vite": "^5.0.0" 857 | } 858 | }, 859 | "node_modules/lilconfig": { 860 | "version": "2.1.0", 861 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 862 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 863 | "dev": true, 864 | "engines": { 865 | "node": ">=10" 866 | } 867 | }, 868 | "node_modules/lines-and-columns": { 869 | "version": "1.2.4", 870 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 871 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 872 | "dev": true 873 | }, 874 | "node_modules/lru-cache": { 875 | "version": "10.2.1", 876 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.1.tgz", 877 | "integrity": "sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==", 878 | "dev": true, 879 | "engines": { 880 | "node": "14 || >=16.14" 881 | } 882 | }, 883 | "node_modules/merge2": { 884 | "version": "1.4.1", 885 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 886 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 887 | "dev": true, 888 | "engines": { 889 | "node": ">= 8" 890 | } 891 | }, 892 | "node_modules/micromatch": { 893 | "version": "4.0.5", 894 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 895 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 896 | "dev": true, 897 | "dependencies": { 898 | "braces": "^3.0.2", 899 | "picomatch": "^2.3.1" 900 | }, 901 | "engines": { 902 | "node": ">=8.6" 903 | } 904 | }, 905 | "node_modules/mime-db": { 906 | "version": "1.52.0", 907 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 908 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 909 | "dev": true, 910 | "engines": { 911 | "node": ">= 0.6" 912 | } 913 | }, 914 | "node_modules/mime-types": { 915 | "version": "2.1.35", 916 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 917 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 918 | "dev": true, 919 | "dependencies": { 920 | "mime-db": "1.52.0" 921 | }, 922 | "engines": { 923 | "node": ">= 0.6" 924 | } 925 | }, 926 | "node_modules/minimatch": { 927 | "version": "9.0.4", 928 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", 929 | "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", 930 | "dev": true, 931 | "dependencies": { 932 | "brace-expansion": "^2.0.1" 933 | }, 934 | "engines": { 935 | "node": ">=16 || 14 >=14.17" 936 | }, 937 | "funding": { 938 | "url": "https://github.com/sponsors/isaacs" 939 | } 940 | }, 941 | "node_modules/minipass": { 942 | "version": "7.0.4", 943 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", 944 | "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", 945 | "dev": true, 946 | "engines": { 947 | "node": ">=16 || 14 >=14.17" 948 | } 949 | }, 950 | "node_modules/mz": { 951 | "version": "2.7.0", 952 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 953 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 954 | "dev": true, 955 | "dependencies": { 956 | "any-promise": "^1.0.0", 957 | "object-assign": "^4.0.1", 958 | "thenify-all": "^1.0.0" 959 | } 960 | }, 961 | "node_modules/nanoid": { 962 | "version": "3.3.7", 963 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 964 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 965 | "dev": true, 966 | "funding": [ 967 | { 968 | "type": "github", 969 | "url": "https://github.com/sponsors/ai" 970 | } 971 | ], 972 | "bin": { 973 | "nanoid": "bin/nanoid.cjs" 974 | }, 975 | "engines": { 976 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 977 | } 978 | }, 979 | "node_modules/node-releases": { 980 | "version": "2.0.14", 981 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 982 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 983 | "dev": true 984 | }, 985 | "node_modules/normalize-path": { 986 | "version": "3.0.0", 987 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 988 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 989 | "dev": true, 990 | "engines": { 991 | "node": ">=0.10.0" 992 | } 993 | }, 994 | "node_modules/normalize-range": { 995 | "version": "0.1.2", 996 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 997 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 998 | "dev": true, 999 | "engines": { 1000 | "node": ">=0.10.0" 1001 | } 1002 | }, 1003 | "node_modules/object-assign": { 1004 | "version": "4.1.1", 1005 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1006 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 1007 | "dev": true, 1008 | "engines": { 1009 | "node": ">=0.10.0" 1010 | } 1011 | }, 1012 | "node_modules/object-hash": { 1013 | "version": "3.0.0", 1014 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 1015 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 1016 | "dev": true, 1017 | "engines": { 1018 | "node": ">= 6" 1019 | } 1020 | }, 1021 | "node_modules/path-key": { 1022 | "version": "3.1.1", 1023 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1024 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1025 | "dev": true, 1026 | "engines": { 1027 | "node": ">=8" 1028 | } 1029 | }, 1030 | "node_modules/path-parse": { 1031 | "version": "1.0.7", 1032 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1033 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1034 | "dev": true 1035 | }, 1036 | "node_modules/path-scurry": { 1037 | "version": "1.10.2", 1038 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", 1039 | "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", 1040 | "dev": true, 1041 | "dependencies": { 1042 | "lru-cache": "^10.2.0", 1043 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 1044 | }, 1045 | "engines": { 1046 | "node": ">=16 || 14 >=14.17" 1047 | }, 1048 | "funding": { 1049 | "url": "https://github.com/sponsors/isaacs" 1050 | } 1051 | }, 1052 | "node_modules/picocolors": { 1053 | "version": "1.0.0", 1054 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 1055 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 1056 | "dev": true 1057 | }, 1058 | "node_modules/picomatch": { 1059 | "version": "2.3.1", 1060 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1061 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1062 | "dev": true, 1063 | "engines": { 1064 | "node": ">=8.6" 1065 | }, 1066 | "funding": { 1067 | "url": "https://github.com/sponsors/jonschlinkert" 1068 | } 1069 | }, 1070 | "node_modules/pify": { 1071 | "version": "2.3.0", 1072 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 1073 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 1074 | "dev": true, 1075 | "engines": { 1076 | "node": ">=0.10.0" 1077 | } 1078 | }, 1079 | "node_modules/pirates": { 1080 | "version": "4.0.6", 1081 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 1082 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 1083 | "dev": true, 1084 | "engines": { 1085 | "node": ">= 6" 1086 | } 1087 | }, 1088 | "node_modules/postcss": { 1089 | "version": "8.4.38", 1090 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 1091 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 1092 | "dev": true, 1093 | "funding": [ 1094 | { 1095 | "type": "opencollective", 1096 | "url": "https://opencollective.com/postcss/" 1097 | }, 1098 | { 1099 | "type": "tidelift", 1100 | "url": "https://tidelift.com/funding/github/npm/postcss" 1101 | }, 1102 | { 1103 | "type": "github", 1104 | "url": "https://github.com/sponsors/ai" 1105 | } 1106 | ], 1107 | "dependencies": { 1108 | "nanoid": "^3.3.7", 1109 | "picocolors": "^1.0.0", 1110 | "source-map-js": "^1.2.0" 1111 | }, 1112 | "engines": { 1113 | "node": "^10 || ^12 || >=14" 1114 | } 1115 | }, 1116 | "node_modules/postcss-import": { 1117 | "version": "15.1.0", 1118 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 1119 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 1120 | "dev": true, 1121 | "dependencies": { 1122 | "postcss-value-parser": "^4.0.0", 1123 | "read-cache": "^1.0.0", 1124 | "resolve": "^1.1.7" 1125 | }, 1126 | "engines": { 1127 | "node": ">=14.0.0" 1128 | }, 1129 | "peerDependencies": { 1130 | "postcss": "^8.0.0" 1131 | } 1132 | }, 1133 | "node_modules/postcss-js": { 1134 | "version": "4.0.1", 1135 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 1136 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 1137 | "dev": true, 1138 | "dependencies": { 1139 | "camelcase-css": "^2.0.1" 1140 | }, 1141 | "engines": { 1142 | "node": "^12 || ^14 || >= 16" 1143 | }, 1144 | "funding": { 1145 | "type": "opencollective", 1146 | "url": "https://opencollective.com/postcss/" 1147 | }, 1148 | "peerDependencies": { 1149 | "postcss": "^8.4.21" 1150 | } 1151 | }, 1152 | "node_modules/postcss-load-config": { 1153 | "version": "4.0.2", 1154 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 1155 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 1156 | "dev": true, 1157 | "funding": [ 1158 | { 1159 | "type": "opencollective", 1160 | "url": "https://opencollective.com/postcss/" 1161 | }, 1162 | { 1163 | "type": "github", 1164 | "url": "https://github.com/sponsors/ai" 1165 | } 1166 | ], 1167 | "dependencies": { 1168 | "lilconfig": "^3.0.0", 1169 | "yaml": "^2.3.4" 1170 | }, 1171 | "engines": { 1172 | "node": ">= 14" 1173 | }, 1174 | "peerDependencies": { 1175 | "postcss": ">=8.0.9", 1176 | "ts-node": ">=9.0.0" 1177 | }, 1178 | "peerDependenciesMeta": { 1179 | "postcss": { 1180 | "optional": true 1181 | }, 1182 | "ts-node": { 1183 | "optional": true 1184 | } 1185 | } 1186 | }, 1187 | "node_modules/postcss-load-config/node_modules/lilconfig": { 1188 | "version": "3.1.1", 1189 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", 1190 | "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", 1191 | "dev": true, 1192 | "engines": { 1193 | "node": ">=14" 1194 | }, 1195 | "funding": { 1196 | "url": "https://github.com/sponsors/antonk52" 1197 | } 1198 | }, 1199 | "node_modules/postcss-nested": { 1200 | "version": "6.0.1", 1201 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 1202 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 1203 | "dev": true, 1204 | "dependencies": { 1205 | "postcss-selector-parser": "^6.0.11" 1206 | }, 1207 | "engines": { 1208 | "node": ">=12.0" 1209 | }, 1210 | "funding": { 1211 | "type": "opencollective", 1212 | "url": "https://opencollective.com/postcss/" 1213 | }, 1214 | "peerDependencies": { 1215 | "postcss": "^8.2.14" 1216 | } 1217 | }, 1218 | "node_modules/postcss-selector-parser": { 1219 | "version": "6.0.16", 1220 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", 1221 | "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", 1222 | "dev": true, 1223 | "dependencies": { 1224 | "cssesc": "^3.0.0", 1225 | "util-deprecate": "^1.0.2" 1226 | }, 1227 | "engines": { 1228 | "node": ">=4" 1229 | } 1230 | }, 1231 | "node_modules/postcss-value-parser": { 1232 | "version": "4.2.0", 1233 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 1234 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 1235 | "dev": true 1236 | }, 1237 | "node_modules/proxy-from-env": { 1238 | "version": "1.1.0", 1239 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 1240 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 1241 | "dev": true 1242 | }, 1243 | "node_modules/queue-microtask": { 1244 | "version": "1.2.3", 1245 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1246 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1247 | "dev": true, 1248 | "funding": [ 1249 | { 1250 | "type": "github", 1251 | "url": "https://github.com/sponsors/feross" 1252 | }, 1253 | { 1254 | "type": "patreon", 1255 | "url": "https://www.patreon.com/feross" 1256 | }, 1257 | { 1258 | "type": "consulting", 1259 | "url": "https://feross.org/support" 1260 | } 1261 | ] 1262 | }, 1263 | "node_modules/read-cache": { 1264 | "version": "1.0.0", 1265 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 1266 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 1267 | "dev": true, 1268 | "dependencies": { 1269 | "pify": "^2.3.0" 1270 | } 1271 | }, 1272 | "node_modules/readdirp": { 1273 | "version": "3.6.0", 1274 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1275 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1276 | "dev": true, 1277 | "dependencies": { 1278 | "picomatch": "^2.2.1" 1279 | }, 1280 | "engines": { 1281 | "node": ">=8.10.0" 1282 | } 1283 | }, 1284 | "node_modules/resolve": { 1285 | "version": "1.22.8", 1286 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 1287 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 1288 | "dev": true, 1289 | "dependencies": { 1290 | "is-core-module": "^2.13.0", 1291 | "path-parse": "^1.0.7", 1292 | "supports-preserve-symlinks-flag": "^1.0.0" 1293 | }, 1294 | "bin": { 1295 | "resolve": "bin/resolve" 1296 | }, 1297 | "funding": { 1298 | "url": "https://github.com/sponsors/ljharb" 1299 | } 1300 | }, 1301 | "node_modules/reusify": { 1302 | "version": "1.0.4", 1303 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1304 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1305 | "dev": true, 1306 | "engines": { 1307 | "iojs": ">=1.0.0", 1308 | "node": ">=0.10.0" 1309 | } 1310 | }, 1311 | "node_modules/rollup": { 1312 | "version": "4.14.1", 1313 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.14.1.tgz", 1314 | "integrity": "sha512-4LnHSdd3QK2pa1J6dFbfm1HN0D7vSK/ZuZTsdyUAlA6Rr1yTouUTL13HaDOGJVgby461AhrNGBS7sCGXXtT+SA==", 1315 | "dev": true, 1316 | "dependencies": { 1317 | "@types/estree": "1.0.5" 1318 | }, 1319 | "bin": { 1320 | "rollup": "dist/bin/rollup" 1321 | }, 1322 | "engines": { 1323 | "node": ">=18.0.0", 1324 | "npm": ">=8.0.0" 1325 | }, 1326 | "optionalDependencies": { 1327 | "@rollup/rollup-android-arm-eabi": "4.14.1", 1328 | "@rollup/rollup-android-arm64": "4.14.1", 1329 | "@rollup/rollup-darwin-arm64": "4.14.1", 1330 | "@rollup/rollup-darwin-x64": "4.14.1", 1331 | "@rollup/rollup-linux-arm-gnueabihf": "4.14.1", 1332 | "@rollup/rollup-linux-arm64-gnu": "4.14.1", 1333 | "@rollup/rollup-linux-arm64-musl": "4.14.1", 1334 | "@rollup/rollup-linux-powerpc64le-gnu": "4.14.1", 1335 | "@rollup/rollup-linux-riscv64-gnu": "4.14.1", 1336 | "@rollup/rollup-linux-s390x-gnu": "4.14.1", 1337 | "@rollup/rollup-linux-x64-gnu": "4.14.1", 1338 | "@rollup/rollup-linux-x64-musl": "4.14.1", 1339 | "@rollup/rollup-win32-arm64-msvc": "4.14.1", 1340 | "@rollup/rollup-win32-ia32-msvc": "4.14.1", 1341 | "@rollup/rollup-win32-x64-msvc": "4.14.1", 1342 | "fsevents": "~2.3.2" 1343 | } 1344 | }, 1345 | "node_modules/run-parallel": { 1346 | "version": "1.2.0", 1347 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1348 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1349 | "dev": true, 1350 | "funding": [ 1351 | { 1352 | "type": "github", 1353 | "url": "https://github.com/sponsors/feross" 1354 | }, 1355 | { 1356 | "type": "patreon", 1357 | "url": "https://www.patreon.com/feross" 1358 | }, 1359 | { 1360 | "type": "consulting", 1361 | "url": "https://feross.org/support" 1362 | } 1363 | ], 1364 | "dependencies": { 1365 | "queue-microtask": "^1.2.2" 1366 | } 1367 | }, 1368 | "node_modules/shebang-command": { 1369 | "version": "2.0.0", 1370 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1371 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1372 | "dev": true, 1373 | "dependencies": { 1374 | "shebang-regex": "^3.0.0" 1375 | }, 1376 | "engines": { 1377 | "node": ">=8" 1378 | } 1379 | }, 1380 | "node_modules/shebang-regex": { 1381 | "version": "3.0.0", 1382 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1383 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1384 | "dev": true, 1385 | "engines": { 1386 | "node": ">=8" 1387 | } 1388 | }, 1389 | "node_modules/signal-exit": { 1390 | "version": "4.1.0", 1391 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 1392 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 1393 | "dev": true, 1394 | "engines": { 1395 | "node": ">=14" 1396 | }, 1397 | "funding": { 1398 | "url": "https://github.com/sponsors/isaacs" 1399 | } 1400 | }, 1401 | "node_modules/source-map-js": { 1402 | "version": "1.2.0", 1403 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 1404 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 1405 | "dev": true, 1406 | "engines": { 1407 | "node": ">=0.10.0" 1408 | } 1409 | }, 1410 | "node_modules/string-width": { 1411 | "version": "5.1.2", 1412 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 1413 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 1414 | "dev": true, 1415 | "dependencies": { 1416 | "eastasianwidth": "^0.2.0", 1417 | "emoji-regex": "^9.2.2", 1418 | "strip-ansi": "^7.0.1" 1419 | }, 1420 | "engines": { 1421 | "node": ">=12" 1422 | }, 1423 | "funding": { 1424 | "url": "https://github.com/sponsors/sindresorhus" 1425 | } 1426 | }, 1427 | "node_modules/string-width-cjs": { 1428 | "name": "string-width", 1429 | "version": "4.2.3", 1430 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1431 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1432 | "dev": true, 1433 | "dependencies": { 1434 | "emoji-regex": "^8.0.0", 1435 | "is-fullwidth-code-point": "^3.0.0", 1436 | "strip-ansi": "^6.0.1" 1437 | }, 1438 | "engines": { 1439 | "node": ">=8" 1440 | } 1441 | }, 1442 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 1443 | "version": "5.0.1", 1444 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1445 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1446 | "dev": true, 1447 | "engines": { 1448 | "node": ">=8" 1449 | } 1450 | }, 1451 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 1452 | "version": "8.0.0", 1453 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1454 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1455 | "dev": true 1456 | }, 1457 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 1458 | "version": "6.0.1", 1459 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1460 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1461 | "dev": true, 1462 | "dependencies": { 1463 | "ansi-regex": "^5.0.1" 1464 | }, 1465 | "engines": { 1466 | "node": ">=8" 1467 | } 1468 | }, 1469 | "node_modules/strip-ansi": { 1470 | "version": "7.1.0", 1471 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 1472 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 1473 | "dev": true, 1474 | "dependencies": { 1475 | "ansi-regex": "^6.0.1" 1476 | }, 1477 | "engines": { 1478 | "node": ">=12" 1479 | }, 1480 | "funding": { 1481 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 1482 | } 1483 | }, 1484 | "node_modules/strip-ansi-cjs": { 1485 | "name": "strip-ansi", 1486 | "version": "6.0.1", 1487 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1488 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1489 | "dev": true, 1490 | "dependencies": { 1491 | "ansi-regex": "^5.0.1" 1492 | }, 1493 | "engines": { 1494 | "node": ">=8" 1495 | } 1496 | }, 1497 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 1498 | "version": "5.0.1", 1499 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1500 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1501 | "dev": true, 1502 | "engines": { 1503 | "node": ">=8" 1504 | } 1505 | }, 1506 | "node_modules/sucrase": { 1507 | "version": "3.35.0", 1508 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 1509 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 1510 | "dev": true, 1511 | "dependencies": { 1512 | "@jridgewell/gen-mapping": "^0.3.2", 1513 | "commander": "^4.0.0", 1514 | "glob": "^10.3.10", 1515 | "lines-and-columns": "^1.1.6", 1516 | "mz": "^2.7.0", 1517 | "pirates": "^4.0.1", 1518 | "ts-interface-checker": "^0.1.9" 1519 | }, 1520 | "bin": { 1521 | "sucrase": "bin/sucrase", 1522 | "sucrase-node": "bin/sucrase-node" 1523 | }, 1524 | "engines": { 1525 | "node": ">=16 || 14 >=14.17" 1526 | } 1527 | }, 1528 | "node_modules/supports-preserve-symlinks-flag": { 1529 | "version": "1.0.0", 1530 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 1531 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 1532 | "dev": true, 1533 | "engines": { 1534 | "node": ">= 0.4" 1535 | }, 1536 | "funding": { 1537 | "url": "https://github.com/sponsors/ljharb" 1538 | } 1539 | }, 1540 | "node_modules/tailwindcss": { 1541 | "version": "3.4.3", 1542 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", 1543 | "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", 1544 | "dev": true, 1545 | "dependencies": { 1546 | "@alloc/quick-lru": "^5.2.0", 1547 | "arg": "^5.0.2", 1548 | "chokidar": "^3.5.3", 1549 | "didyoumean": "^1.2.2", 1550 | "dlv": "^1.1.3", 1551 | "fast-glob": "^3.3.0", 1552 | "glob-parent": "^6.0.2", 1553 | "is-glob": "^4.0.3", 1554 | "jiti": "^1.21.0", 1555 | "lilconfig": "^2.1.0", 1556 | "micromatch": "^4.0.5", 1557 | "normalize-path": "^3.0.0", 1558 | "object-hash": "^3.0.0", 1559 | "picocolors": "^1.0.0", 1560 | "postcss": "^8.4.23", 1561 | "postcss-import": "^15.1.0", 1562 | "postcss-js": "^4.0.1", 1563 | "postcss-load-config": "^4.0.1", 1564 | "postcss-nested": "^6.0.1", 1565 | "postcss-selector-parser": "^6.0.11", 1566 | "resolve": "^1.22.2", 1567 | "sucrase": "^3.32.0" 1568 | }, 1569 | "bin": { 1570 | "tailwind": "lib/cli.js", 1571 | "tailwindcss": "lib/cli.js" 1572 | }, 1573 | "engines": { 1574 | "node": ">=14.0.0" 1575 | } 1576 | }, 1577 | "node_modules/thenify": { 1578 | "version": "3.3.1", 1579 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 1580 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 1581 | "dev": true, 1582 | "dependencies": { 1583 | "any-promise": "^1.0.0" 1584 | } 1585 | }, 1586 | "node_modules/thenify-all": { 1587 | "version": "1.6.0", 1588 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 1589 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 1590 | "dev": true, 1591 | "dependencies": { 1592 | "thenify": ">= 3.1.0 < 4" 1593 | }, 1594 | "engines": { 1595 | "node": ">=0.8" 1596 | } 1597 | }, 1598 | "node_modules/to-regex-range": { 1599 | "version": "5.0.1", 1600 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1601 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1602 | "dev": true, 1603 | "dependencies": { 1604 | "is-number": "^7.0.0" 1605 | }, 1606 | "engines": { 1607 | "node": ">=8.0" 1608 | } 1609 | }, 1610 | "node_modules/ts-interface-checker": { 1611 | "version": "0.1.13", 1612 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 1613 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 1614 | "dev": true 1615 | }, 1616 | "node_modules/update-browserslist-db": { 1617 | "version": "1.0.13", 1618 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", 1619 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", 1620 | "dev": true, 1621 | "funding": [ 1622 | { 1623 | "type": "opencollective", 1624 | "url": "https://opencollective.com/browserslist" 1625 | }, 1626 | { 1627 | "type": "tidelift", 1628 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1629 | }, 1630 | { 1631 | "type": "github", 1632 | "url": "https://github.com/sponsors/ai" 1633 | } 1634 | ], 1635 | "dependencies": { 1636 | "escalade": "^3.1.1", 1637 | "picocolors": "^1.0.0" 1638 | }, 1639 | "bin": { 1640 | "update-browserslist-db": "cli.js" 1641 | }, 1642 | "peerDependencies": { 1643 | "browserslist": ">= 4.21.0" 1644 | } 1645 | }, 1646 | "node_modules/util-deprecate": { 1647 | "version": "1.0.2", 1648 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1649 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 1650 | "dev": true 1651 | }, 1652 | "node_modules/vite": { 1653 | "version": "5.2.8", 1654 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.8.tgz", 1655 | "integrity": "sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==", 1656 | "dev": true, 1657 | "dependencies": { 1658 | "esbuild": "^0.20.1", 1659 | "postcss": "^8.4.38", 1660 | "rollup": "^4.13.0" 1661 | }, 1662 | "bin": { 1663 | "vite": "bin/vite.js" 1664 | }, 1665 | "engines": { 1666 | "node": "^18.0.0 || >=20.0.0" 1667 | }, 1668 | "funding": { 1669 | "url": "https://github.com/vitejs/vite?sponsor=1" 1670 | }, 1671 | "optionalDependencies": { 1672 | "fsevents": "~2.3.3" 1673 | }, 1674 | "peerDependencies": { 1675 | "@types/node": "^18.0.0 || >=20.0.0", 1676 | "less": "*", 1677 | "lightningcss": "^1.21.0", 1678 | "sass": "*", 1679 | "stylus": "*", 1680 | "sugarss": "*", 1681 | "terser": "^5.4.0" 1682 | }, 1683 | "peerDependenciesMeta": { 1684 | "@types/node": { 1685 | "optional": true 1686 | }, 1687 | "less": { 1688 | "optional": true 1689 | }, 1690 | "lightningcss": { 1691 | "optional": true 1692 | }, 1693 | "sass": { 1694 | "optional": true 1695 | }, 1696 | "stylus": { 1697 | "optional": true 1698 | }, 1699 | "sugarss": { 1700 | "optional": true 1701 | }, 1702 | "terser": { 1703 | "optional": true 1704 | } 1705 | } 1706 | }, 1707 | "node_modules/vite-plugin-full-reload": { 1708 | "version": "1.1.0", 1709 | "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.1.0.tgz", 1710 | "integrity": "sha512-3cObNDzX6DdfhD9E7kf6w2mNunFpD7drxyNgHLw+XwIYAgb+Xt16SEXo0Up4VH+TMf3n+DSVJZtW2POBGcBYAA==", 1711 | "dev": true, 1712 | "dependencies": { 1713 | "picocolors": "^1.0.0", 1714 | "picomatch": "^2.3.1" 1715 | } 1716 | }, 1717 | "node_modules/which": { 1718 | "version": "2.0.2", 1719 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1720 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1721 | "dev": true, 1722 | "dependencies": { 1723 | "isexe": "^2.0.0" 1724 | }, 1725 | "bin": { 1726 | "node-which": "bin/node-which" 1727 | }, 1728 | "engines": { 1729 | "node": ">= 8" 1730 | } 1731 | }, 1732 | "node_modules/wrap-ansi": { 1733 | "version": "8.1.0", 1734 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 1735 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 1736 | "dev": true, 1737 | "dependencies": { 1738 | "ansi-styles": "^6.1.0", 1739 | "string-width": "^5.0.1", 1740 | "strip-ansi": "^7.0.1" 1741 | }, 1742 | "engines": { 1743 | "node": ">=12" 1744 | }, 1745 | "funding": { 1746 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1747 | } 1748 | }, 1749 | "node_modules/wrap-ansi-cjs": { 1750 | "name": "wrap-ansi", 1751 | "version": "7.0.0", 1752 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 1753 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 1754 | "dev": true, 1755 | "dependencies": { 1756 | "ansi-styles": "^4.0.0", 1757 | "string-width": "^4.1.0", 1758 | "strip-ansi": "^6.0.0" 1759 | }, 1760 | "engines": { 1761 | "node": ">=10" 1762 | }, 1763 | "funding": { 1764 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1765 | } 1766 | }, 1767 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 1768 | "version": "5.0.1", 1769 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1770 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1771 | "dev": true, 1772 | "engines": { 1773 | "node": ">=8" 1774 | } 1775 | }, 1776 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 1777 | "version": "4.3.0", 1778 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1779 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1780 | "dev": true, 1781 | "dependencies": { 1782 | "color-convert": "^2.0.1" 1783 | }, 1784 | "engines": { 1785 | "node": ">=8" 1786 | }, 1787 | "funding": { 1788 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1789 | } 1790 | }, 1791 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 1792 | "version": "8.0.0", 1793 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1794 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1795 | "dev": true 1796 | }, 1797 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 1798 | "version": "4.2.3", 1799 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1800 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1801 | "dev": true, 1802 | "dependencies": { 1803 | "emoji-regex": "^8.0.0", 1804 | "is-fullwidth-code-point": "^3.0.0", 1805 | "strip-ansi": "^6.0.1" 1806 | }, 1807 | "engines": { 1808 | "node": ">=8" 1809 | } 1810 | }, 1811 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 1812 | "version": "6.0.1", 1813 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1814 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1815 | "dev": true, 1816 | "dependencies": { 1817 | "ansi-regex": "^5.0.1" 1818 | }, 1819 | "engines": { 1820 | "node": ">=8" 1821 | } 1822 | }, 1823 | "node_modules/yaml": { 1824 | "version": "2.4.1", 1825 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", 1826 | "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", 1827 | "dev": true, 1828 | "bin": { 1829 | "yaml": "bin.mjs" 1830 | }, 1831 | "engines": { 1832 | "node": ">= 14" 1833 | } 1834 | } 1835 | } 1836 | } 1837 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "scripts": { 5 | "dev": "vite", 6 | "build": "vite build" 7 | }, 8 | "devDependencies": { 9 | "autoprefixer": "^10.4.19", 10 | "axios": "^1.6.4", 11 | "laravel-vite-plugin": "^1.0", 12 | "postcss": "^8.4.38", 13 | "tailwindcss": "^3.4.3", 14 | "vite": "^5.0" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | tests/Unit 10 | 11 | 12 | tests/Feature 13 | 14 | 15 | 16 | 17 | app 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyWay/30-days-to-learn-laravel/659e6436f377c1b9622859075beea66b766dd2ce/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | handleRequest(Request::capture()); 18 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | import "../css/app.css"; 3 | 4 | // alert('hello from the JS'); 5 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | window.axios = axios; 3 | 4 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 5 | -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Log In 4 | 5 | 6 |
7 | @csrf 8 | 9 |
10 |
11 |
12 | 13 | Email 14 | 15 |
16 | 17 | 18 | 19 |
20 |
21 | 22 | 23 | Password 24 | 25 |
26 | 27 | 28 | 29 |
30 |
31 |
32 |
33 |
34 | 35 |
36 | Cancel 37 | Log In 38 |
39 |
40 |
41 | -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Register 4 | 5 | 6 |
7 | @csrf 8 | 9 |
10 |
11 |
12 | 13 | First Name 14 | 15 |
16 | 17 | 18 | 19 |
20 |
21 | 22 | 23 | Last Name 24 | 25 |
26 | 27 | 28 | 29 |
30 |
31 | 32 | 33 | Email 34 | 35 |
36 | 37 | 38 | 39 |
40 |
41 | 42 | 43 | Password 44 | 45 |
46 | 47 | 48 | 49 |
50 |
51 | 52 | 53 | Confirm Password 54 | 55 |
56 | 57 | 58 | 59 |
60 |
61 |
62 |
63 |
64 | 65 |
66 | Cancel 67 | Register 68 |
69 |
70 |
71 | -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-300 dark:focus:border-blue-700 dark:active:bg-gray-700 dark:active:text-gray-300']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/components/form-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/components/form-error.blade.php: -------------------------------------------------------------------------------- 1 | @props(['name']) 2 | 3 | @error($name) 4 |

{{ $message }}

5 | @enderror 6 | -------------------------------------------------------------------------------- /resources/views/components/form-field.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ $slot }} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/components/form-input.blade.php: -------------------------------------------------------------------------------- 1 |
2 | merge(['class' => 'block flex-1 border-0 bg-transparent py-1.5 px-3 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm sm:leading-6']) }}> 3 |
4 | -------------------------------------------------------------------------------- /resources/views/components/form-label.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/components/layout.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | My Website 9 | @vite(['resources/js/app.js']) 10 | 11 | 12 | 13 |
14 | 104 | 105 |
106 |
107 |

{{ $heading }}

108 | 109 | Create Job 110 |
111 |
112 | 113 |
114 |
115 | {{ $slot }} 116 |
117 |
118 |
119 | 120 | 121 | -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- 1 | @props(['active' => false]) 2 | 3 | {{ $slot }} 7 | -------------------------------------------------------------------------------- /resources/views/contact.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact Page 4 | 5 | 6 |

Hello from the Contact Page.

7 |
8 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Home Page 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/views/jobs/create.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Create Job 4 | 5 | 6 |
7 | @csrf 8 | 9 |
10 |
11 |

Create a New Job

12 |

We just need a handful of details from you.

13 | 14 |
15 | 16 | Title 17 | 18 |
19 | 20 | 21 | 22 |
23 |
24 | 25 | 26 | Salary 27 | 28 |
29 | 30 | 31 | 32 |
33 |
34 |
35 |
36 |
37 | 38 |
39 | 40 | Save 41 |
42 |
43 |
44 | -------------------------------------------------------------------------------- /resources/views/jobs/edit.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Edit Job: {{ $job->title }} 4 | 5 | 6 |
7 | @csrf 8 | @method('PATCH') 9 | 10 |
11 |
12 |
13 |
14 | 15 |
16 |
18 | 26 |
27 | 28 | @error('title') 29 |

{{ $message }}

30 | @enderror 31 |
32 |
33 | 34 |
35 | 36 |
37 |
40 | 48 |
49 | 50 | @error('salary') 51 |

{{ $message }}

52 | @enderror 53 |
54 |
55 |
56 |
57 |
58 | 59 |
60 |
61 | 62 |
63 | 64 |
65 | Cancel 66 | 67 |
68 | 72 |
73 |
74 |
75 |
76 | 77 | 81 |
82 | -------------------------------------------------------------------------------- /resources/views/jobs/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Job Listings 4 | 5 | 6 |
7 | @foreach ($jobs as $job) 8 | 9 |
{{ $job->employer->name }}
10 | 11 |
12 | {{ $job['title'] }}: Pays {{ $job['salary'] }} per year. 13 |
14 |
15 | @endforeach 16 | 17 |
18 | {{ $jobs->links() }} 19 |
20 |
21 |
22 | -------------------------------------------------------------------------------- /resources/views/jobs/show.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Job 4 | 5 | 6 |

{{ $job->title }}

7 | 8 |

9 | This job pays {{ $job->salary }} per year. 10 |

11 | 12 | @can('edit', $job) 13 |

14 | Edit Job 15 |

16 | @endcan 17 |
18 | -------------------------------------------------------------------------------- /resources/views/mail/job-posted.blade.php: -------------------------------------------------------------------------------- 1 |

2 | {{ $job->title }} 3 |

4 | 5 |

6 | Congrats! Your job is now live on our website. 7 |

8 | 9 |

10 | View Your Job Listing 11 |

12 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 46 | @endif 47 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-5.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 88 | @endif 89 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 46 | @endif 47 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 36 | @endif 37 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 27 | @endif 28 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-5.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 29 | @endif 30 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 19 | @endif 20 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-tailwind.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 25 | @endif 26 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 106 | @endif 107 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 8 | })->purpose('Display an inspiring quote')->hourly(); 9 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 24 | Route::get('/jobs/{job}', [JobController::class, 'show']); 25 | 26 | Route::get('/jobs/{job}/edit', [JobController::class, 'edit']) 27 | ->middleware('auth') 28 | ->can('edit', 'job'); 29 | 30 | Route::patch('/jobs/{job}', [JobController::class, 'update']); 31 | Route::delete('/jobs/{job}', [JobController::class, 'destroy']); 32 | 33 | // Auth 34 | Route::get('/register', [RegisteredUserController::class, 'create']); 35 | Route::post('/register', [RegisteredUserController::class, 'store']); 36 | 37 | Route::get('/login', [SessionController::class, 'create'])->name('login'); 38 | Route::post('/login', [SessionController::class, 'store']); 39 | Route::post('/logout', [SessionController::class, 'destroy']); 40 | 41 | 42 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: [ 4 | "./resources/**/*.blade.php", 5 | "./resources/**/*.js", 6 | "./resources/**/*.vue", 7 | ], 8 | theme: { 9 | extend: { 10 | colors: { 11 | "laracasts": "rgb(50,138,241)" 12 | } 13 | }, 14 | }, 15 | plugins: [], 16 | } 17 | 18 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 16 | 17 | $response->assertStatus(200); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | laravel({ 7 | input: ['resources/js/app.js'], 8 | refresh: true, 9 | }), 10 | ], 11 | }); 12 | --------------------------------------------------------------------------------