2024-03-23 10:05:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2024-04-09 22:36:40 +02:00
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2024-03-23 10:05:14 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Seed extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
protected $table = 'seeds';
|
2024-06-24 18:49:43 +02:00
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'region_id',
|
|
|
|
'uri'
|
|
|
|
];
|
2024-04-09 22:36:40 +02:00
|
|
|
|
2024-03-23 10:05:14 +01:00
|
|
|
}
|