osb/app/Models/Currency.php
Deon George 33658e37a3
WIP: Standard backend theme page and login
Signed-off-by: Deon George <deon@leenooks.net>
2017-12-12 16:28:49 +11:00

18 lines
258 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Currency extends Model
{
public $timestamps = FALSE;
/**
* The accounts in this country
*/
public function countries()
{
return $this->hasMany('App\Models\Country');
}
}