11 lines
163 B
PHP
11 lines
163 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Audit extends Model
|
|
{
|
|
protected $table = 'audit';
|
|
protected $connection = 'mysql7';
|
|
} |