Added TaxTableSeeder

This commit is contained in:
Deon George
2021-06-30 14:39:33 +10:00
parent 61396c9cda
commit d7ef04fc25
3 changed files with 30 additions and 0 deletions

View File

@@ -9,4 +9,7 @@ class Tax extends Model
protected $table = 'ab_tax';
const CREATED_AT = 'date_orig';
const UPDATED_AT = 'date_last';
protected $dates = ['date_orig','date_last'];
public $dateFormat = 'U';
}