eloquent-filemaker
eloquent-filemaker copied to clipboard
A Model extension and Eloquent driver for Laravel connecting to FileMaker through the Data API
We need to look into adding WhereNested in the query builder. This should work similar to the whereIn and that the resulting query needs to be distributed appropriately based on...
This PR creates 2 option vendor:publish options. The default will publish a new model in the stubs folder that will be used by the make:fm-model command. The second option will...
$data = FM::table('table')->where('id',$id)->paginate(10); Error showing: Undefined index: aggregate also join() not working
Once https://github.com/laravel/telescope/pull/1499 is merged, this will cause an error due to the deeper array syntax that FM queries use. Before, the bindings result in this shape: ```php [ ['kp_id' =>...
added more try/catch to make sure we log after each request, even when an error occurs
Hi! in `src/Services/FileMakerConnection.php` would that be possible to move line 744 after line 721 in order to always fire the QueryExecuted event? This should log the query to clockwork even...
So far, I was able to make a custom model accessor value for multiple attributes using `get` following the [official guide](https://laravel.com/docs/11.x/eloquent-mutators#building-value-objects-from-multiple-attributes). However, [Mutating Multiple Attributes](https://laravel.com/docs/11.x/eloquent-mutators#mutating-multiple-attributes) was breaking because the `FMHasAttributes`...
This PR adds the ability to increase the amount of returned portal records when using the Eloquent builder. This allows the user to have more then the default of 50...
There was no way to submit the Mod ID with an eloquent model, so this has been adde in as a `withModId()` function to call before calling `save()`