Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

laravel/framework

roncallyt forked laravel/framework

roncallyt/framework

Timeox2k starred laravel/framework
oguzhankrcb created a comment on an issue on laravel/framework
> Instead of `protected $proxies = '*';` // not working you can try `protected $proxies = '0.0.0.0/0';` // working > > For some reason it worked for me, though I don't see it documented anywhere...

View on GitHub

aniket-magadum created a comment on a pull request on laravel/framework
Looks good to have 👍

View on GitHub

clrockwell starred laravel/framework
EddyStuc forked laravel/framework

EddyStuc/framework

Resaizu starred laravel/framework
farhan135027 starred laravel/framework
darmats forked laravel/framework

darmats/framework

ZX-LMK starred laravel/framework
darmats opened an issue on laravel/framework
The Database Factory namespace does not behave as expected when "App\\" is included in the Model namespace
### Laravel Version 11.29.0 ### PHP Version 8.3.11 ### Database Driver & Version _No response_ ### Description My Laravel project has the following directory structure: ``` ├── app │ ...
somarkn99 forked laravel/framework

somarkn99/framework

qodlizaka closed an issue on laravel/framework
Migration not working on fresh Laravel 11 installation
### Laravel Version 11.29.0 ### PHP Version 8.3.6 ### Database Driver & Version mysql Ver 8.0.39-0ubuntu0.24.04.2 for Linux on x86_64 ((Ubuntu)) ### Description After installa...
arsounet starred laravel/framework
azolee starred laravel/framework
kevinb1989 opened a pull request on laravel/framework
[11.x] Pick up existing views and markdowns when creating mails
I spend a whole afternoon designing an email template named `resources/views/customers/welcome.blade.php`. Then I run the `php artisan make:mail --view=customers.welcome`. And my completed te...
saMahmoudzadeh opened a pull request on laravel/framework
[11.x] Fix and rename namespace from Console to Concurrency and apply PSR standards
This PR, updates the namespace for the `ConcurrencyTest` class and applies PSR standards across the files.
eusonlito created a comment on a pull request on laravel/framework
> This won't work on foreign keys, you will need to delete the constraint first Is the same behaviour as `dropColumn`.

View on GitHub

mobentu starred laravel/framework
fragkp created a comment on a pull request on laravel/framework
@browner12 Ah, your right! Good change then!

View on GitHub

eusonlito opened a pull request on laravel/framework
Added dropColumnsIfExists and dropColumnIfExists
This PR introduces the `dropColumnsIfExists` method in `Builder` and `dropColumnIfExists` in `Blueprint`. These methods add a convenient way to safely drop columns from a table if they exist, pr...
browner12 created a comment on a pull request on laravel/framework
correct, and that's how this change works. because you're destructuring you're not assigning the result of the `partition` method, you're defining based on the `0` and `1` keys of the return value....

View on GitHub

fragkp created a comment on a pull request on laravel/framework
> and also doesn't really make any logical sense for how someone would want to use this I'm not sure about that. See this example: ```php [$adults, $kids] = User::all()->partition(fn ($user)...

View on GitHub

browner12 opened a pull request on laravel/framework
[12.x] force `Eloquent\Collection::partition` to return a base `Collection`
the way `partition` currently works is it returns an `Eloquent\Collection` of `Eloquent\Collection`s, which is technically not allowed by the generic type hints defined by the class, and also doesn...
rodrigopedra created a comment on a pull request on laravel/framework
IMO, this is already short enough: ```php $users = User::query() ->when($request->active, fn ($q) => $q->where('is_active', true)) ->when($request->role, fn ($q, $role) => $q->where('...

View on GitHub

zakariaarrid opened a pull request on laravel/framework
[11.x] Introduce whenWhere methods in query builder
**Introduction of whenWhere function to Laravel Query Builder** _Usage Examples_ ``` $users = User::query() ->whenWhere($request->active, 'is_active', true) ->whe...
marius-mcp created a comment on an issue on laravel/framework
@rodrigopedra you are right.

View on GitHub

claudiodekker created a comment on a pull request on laravel/framework
There! I've simplified my approach, and believe the issue should now be fully fixed 👍

View on GitHub

rodrigopedra created a comment on a pull request on laravel/framework
Not all the Exceptions extending `HttpException` will have a message (I am saying not all, instead of none as being too busy right now to test all of them). For example: ```php Route::get('t...

View on GitHub

Load more