Work in progress determining user type

This commit is contained in:
Deon George
2018-07-06 16:57:49 +10:00
parent 1ac764f05e
commit 14b568b735
15 changed files with 385 additions and 80 deletions

View File

@@ -14,10 +14,10 @@ class CountryTableSeeder extends Seeder
public function run()
{
$o = new Country;
$o->id = 61;
$o->name = 'Australia';
$o->two_code = 'AU';
$o->three_code = 'AUS';
$o->currency_id = '61';
$o->active = TRUE;
$oo = Currency::where('iso_code','AUD')->firstOrFail();