Conversation
* Simplifies comments * Apply fixes from StyleCI * Removes non used line * remove some comments --------- Co-authored-by: StyleCI Bot <bot@styleci.io> Co-authored-by: Taylor Otwell <taylor@laravel.com>
* update values for a sqlite default world * migrate on post create project * touch database * fix typo
* Adjusts default mail environment variables * Update .env.example --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
* update example env for reverb * remove broadcasting environment variables
* Replace Bootcamp with Laravel Learn * Revise text for Laravel Learn section Updated wording for Laravel Learn link in README. * Update Laravel learning resources in README Removed redundancy in Laravel learning resources and added a link to Laravel Learn for guided application building. --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
* Add background driver Adds settings for PR laravel/framework#57648 * Update queue.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Fixes the 8.5 PDO deprecation using the same implementation in laravel/framework (https://github.com/laravel/framework/blob/4e40cfd963a4e00fe1dc1982dd6e3c6cab51c825/config/database.php#L64)
* Ignore Laravel compiled views for Vite Before testing, run php artisan cache:clear to clear old compiled views. This issue only happens during local development when running npm run dev. Laravel continuously recompiles Blade into PHP inside storage/framework/views (especially after Livewire re-renders), and these files are changed by Laravel itself, not by us. Because of that, Vite thinks we modified a file and triggers a full reload—even though the change is purely internal framework logic. This makes the reload behavior unacceptable and noisy during development. Since these compiled views belong to Laravel’s backend logic and not frontend assets, Vite does not need to watch them. Ignoring storage/framework/views keeps Vite stable and prevents reloads caused by Laravel doing its own internal work. * Vite ignore rule now in one clean line
```php
'pgsql' => [
...
'sslmode' => env('DB_SSLMODE', 'prefer'),
]
```
* Update 0001_01_01_000001_create_cache_table.php * Update 0001_01_01_000002_create_jobs_table.php * Update 0001_01_01_000002_create_jobs_table.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
This reverts commit 36281b2.
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.