20 lines
314 B
PHP
20 lines
314 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GovernmentAgency extends Model
|
|
{
|
|
protected $table = 'government_agencies';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'slug',
|
|
'short_name',
|
|
'location',
|
|
'description',
|
|
'enhancer_id',
|
|
];
|
|
}
|