Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
config
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* * This file is part of laravel-auditing. * * @author Antério Vieira <anteriovieira@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ /* |-------------------------------------------------------------------------- | Authentication Model |-------------------------------------------------------------------------- | | When using the "Eloquent" authentication driver, we need to know which | Eloquent model should be used to retrieve your users. Of course, it | is often just the "User" model but you may use whatever you like. | */ 'model' => App\User::class, /* |-------------------------------------------------------------------------- | Database Connection |-------------------------------------------------------------------------- | | Here is the the database connection for the auditing log. | */ 'connection' => null, /* |-------------------------------------------------------------------------- | Table |-------------------------------------------------------------------------- | | Here is the the table associated with the auditing model. | */ 'table' => 'audit_trail', /* |-------------------------------------------------------------------------- | Audit console |-------------------------------------------------------------------------- | | Whether we should audit queries run through console (eg. php artisan db:seed). | */ 'audit_console' => false, ];