Install the package using composer
composer require ifresh/filemaker-modelAfter installation publish the config file using
php artisan vendor:publish --provider='Ifresh\FilemakerModel\FilemakerModelServiceProvider'Create a new FilemakerModel using the following command. Mind that the Modelname argument will be the classname of the generated model. You are encouraged to use the Laravel naming conventions.
php artisan filemaker:model ModelnameSet the layout name in the generated model file
protected $layout = 'filemaker_layout_name'Get your records
App\Filemaker\Modelname::all();
// returns an eloquent collection with all modelsIf you know the Filemaker internal recordId, you can fetch records with the find method.
App\Filemaker\Modelname::find(234);
// returns a single model instanceYou can create records with ease by using an eloquent like method:
$recordId = App\Filemaker\Modelname::create([
'key1' => 'value',
'key2' => 'value2'
]);
// returns the given recordId