20 lines
314 B
PHP
Executable File
20 lines
314 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Country extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable=[];
|
|
|
|
public function translations()
|
|
{
|
|
return $this->hasMany(CountryTranslation::class);
|
|
}
|
|
|
|
}
|