mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00: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);
|
|
}
|
|
}
|