Files
backend/app/Models/WeatherNotice.php
2024-02-01 09:53:53 +00:00

16 lines
222 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class WeatherNotice extends Model
{
protected $fillable = [
'type',
'color',
'notice_text',
'notice_code'
];
}