WIP: Standard backend theme page and login
Signed-off-by: Deon George <deon@leenooks.net>
This commit is contained in:
18
app/Models/Currency.php
Normal file
18
app/Models/Currency.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user