19 lines
287 B
PHP
19 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AiringProofTheme extends Model
|
|
{
|
|
protected $table = 'airing_proof_themes';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'slug',
|
|
'year',
|
|
'description',
|
|
'enhancer_id'
|
|
];
|
|
}
|