|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ControlLog extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'control_logs';
|
|
protected $fillable = [
|
|
'action',
|
|
'trigered_by',
|
|
];
|
|
}
|