Filemaker integration for Laravel framework
This integration allows to connect to Filemaker File/Solution/Layout with Laravel framework.
This library depends on https://github.com/andreossido/laravel-odbc, (*1)
# How to install
composer require abram/laravel-filemaker
To add source in your project, (*2)
# Usage Instructions
It's very simple to configure:, (*3)
Add database to database.php file, (*4)
'odbc-connection-name' => [
'driver' => 'odbc',
'dsn' => 'OdbcConnectionName',
'database' => 'DatabaseName',
'host' => '127.0.0.1',
'username' => 'username',
'password' => 'password',
'options' => [
'processor' => \Abram\Filemaker\FilemakerProcessor::class,
'grammar' => [
'query' => \Abram\Filemaker\FilemakerQueryGrammar::class
],
]
]