2024-04-09 22:36:40 +02:00
|
|
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Exception extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
protected $table = 'exceptions';
|
2024-04-13 00:34:40 +02:00
|
|
|
protected $fillable = ['exception', 'type', 'entity_id'];
|
2024-04-09 22:36:40 +02:00
|
|
|
}
|