Adam Lee
Adam Lee
Only just come across your package today as I was looking for an API package which supports PHP 8. This one is very impressive on the how you have taken...
Sorry @vyuldashev I didn't realise this is not supported by OpenAPI https://github.com/OAI/OpenAPI-Specification/issues/93 I am currently building out an API for example one of my routes looks like this: `Route::get('services/{type?}', [IntegrationServicesController::class,...
I have now reverted the parameter change and instead added functionality to automatically generate routes for optional parameters. For example: `api/services/{type?}` now generates 2 paths for the OpenAPI spec without...
I would love to get into this discussion unfortunately currently have COVID symptoms so looks like need to cancel my family mini break. As soon as I am back in...
Sure @gavinhewitt I can see your point with setting the models in the config but also see @glennjacobs point having to add all models in this way will certainly cause...
> Yeah, they only have a single model to worry about though. We have quite a lot! > > Thinking maybe something like > > ``` > gc_model('Product')::find(1); > ```...
Yeah it could work but seems a lot more work for you guys to change the codebase especially all the model relations. Adding a trait on the BaseModel which will...
@glennjacobs @gavinhewitt Will look into putting together this temporary magical model trait this weekend and create my 4th PR 😂 Have a great weekend.
All tests are passing locally the test runner seems to be the issue here. There were 325 errors: 1) GetCandy\Hub\Tests\Feature\Http\Livewire\Pages\Settings\Products\CollectionGroupIndexTest::cant_view_page_as_guest ErrorException: Undefined array key -1
Thanks @alecritson merging develop branch solved the issue. Let me know what you think about this approach to auto loading. I started from Dan’s trait but made a lot of...