Arnaud Becher
Arnaud Becher
Yes I was looking for the source code and saw this link https://www.github.com/mnapoli/bref-dashboard . Sorry to have bothered you. Have a good day.
https://github.com/grimzy/laravel-mysql-spatial/blob/master/composer.json#L18 I think it would be good practice to change for bound php version ; something like : ``` "require": { "php": "^7.4|^8.0", } ``` https://getcomposer.org/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md
### Handling deletion with belongsToMany While using a belongsToMany relationship with a pivot table ``` class Article extends Model { use Searchable; public function authors() { return $this->belongsToMany(Authors::class); } }...
What do you think @nunomaduro ? IMO the whole "Relationships section" would deserve a dedicated page in the docs.
I would simply move the https://www.algolia.com/doc/framework-integration/laravel/indexing/configure-searchable-data/?language=php#relationships to a dedicated page as it doesn't fit well in "Customize Searchable Data" in my opinion and it would be easier to navigate/find in...
in the mean time, I made it a blog post: https://medium.com/code16/handling-changes-on-belongstomany-relations-with-laravel-scout-extended-fa72e41143b7
Great feedback ! I started this list with only 7 services so it was a lot easier to figure out all available solutions. But the list keeps growing and it...
Great idea ! At least it could point to outside content. I think this is a really great peace of writing : https://plausible.io/blog/remove-google-analytics
Hello, this is great news ! I liked the artisan command `scout:status` which gives me lots of information as an overview: - a list of all indexes - model used...
First idea for the generator tests was to implement a "feature" test: use the wizard to create a new entity and check for 200 ok when visiting the endpoints (list,...