feat(models): add Country and NonWorkingDays models
This commit is contained in:
12
app/Models/Country.php
Normal file
12
app/Models/Country.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Country extends Model
|
||||
{
|
||||
protected $fillable = ['country_code', 'name'];
|
||||
}
|
||||
Reference in New Issue
Block a user