In your config/app.php file add the Service Provider to the service providers array like so...
'TCK\Odbc\OdbcServiceProvider',
In Laravel 5.3 I encountered problems (Driver not Found) with this plugin.
This plugin extends the available database drivers and should therefor be called right after the line
In the documentation it says:
In your config/app.php file add the Service Provider to the service providers array like so...
'TCK\Odbc\OdbcServiceProvider',
In Laravel 5.3 I encountered problems (Driver not Found) with this plugin. This plugin extends the available database drivers and should therefor be called right after the line
Illuminate\Database\DatabaseServiceProvider::class,
in config/app.php