mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
13 lines
187 B
PHP
13 lines
187 B
PHP
<?php
|
|
namespace Crater;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Country extends Model
|
|
{
|
|
public function address()
|
|
{
|
|
return $this->hasMany(Address::class);
|
|
}
|
|
}
|