feat(models): add Country and NonWorkingDays models

This commit is contained in:
2024-08-07 12:45:56 +02:00
parent 5633ff78c6
commit 82f3ef39c9
5 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class NonWorkingDays extends Model
{
protected $fillable = ['country_id', 'non_working_date'];
}