38 lines
661 B
PHP
38 lines
661 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class SpatialPlanning
|
|
*
|
|
* @property $id
|
|
* @property $created_at
|
|
* @property $updated_at
|
|
* @property $name
|
|
* @property $kbli
|
|
* @property $activities
|
|
* @property $area
|
|
* @property $location
|
|
* @property $number
|
|
* @property $date
|
|
*
|
|
* @package App
|
|
* @mixin \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
class SpatialPlanning extends Model
|
|
{
|
|
|
|
protected $perPage = 20;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = ['name', 'kbli', 'activities', 'area', 'location', 'number', 'date'];
|
|
|
|
|
|
}
|