freestyledork
freestyledork
I had this issue recently, I changed : `php_flag engine off` to: <Files ~ "\.(htm|html|shtml|php|js|php3|php4|phtml|pl|py|jsp|sh|cgi)$"> Order Deny,Allow Deny from all </Files> <IfModule mod_php5.c> php_flag engine off </IfModule>
I tried messing with the settings to see if that was the reason it wasn't working. I can confirm it doesn't log anything when using tinker with artisan commands enabled....
Looks like there is an issue with the mapTypeToComponent(type) method. Using global components depending on when they were added they could end up deeply nested in the __proto__ property and...
I found myself needing a feature like this. It would be neat if this worked. Sorting client-side is not possible for paginated results. ``` Str::make('email')->on('user')->sortable(); ```
@lindyhopchris your solution would work for sorting the relationship collection on it's own, but not for sorting the main resource based off the relation value. For instance assume we have...
@lindyhopchris Sure, here is an example. To sort Laravel Eloquent results based on a related model's column, you'll need to use a join clause, because ordering results on the basis...
Any progress or updates on this feature?
@lindyhopchris while you are busy working on refactoring, I am hoping you will consider expanding the sort abilities to allow sorting a main resource based on relation value. This is...
I attempted to come up with a temporary solution for not loading sparse fields. Extending the `JsonApiResource` and using custom resource classes I can effectively avoid loading unrelated fields. This...