Extra logging for cron and add flight visible field

This commit is contained in:
Nabeel Shahzad
2018-07-12 22:23:45 -05:00
parent f640381978
commit 4ca58ed754
6 changed files with 26 additions and 10 deletions

View File

@@ -64,6 +64,7 @@ class Flight extends Model
'end_date',
'has_bid',
'active',
'visible',
];
protected $casts = [
@@ -75,8 +76,9 @@ class Flight extends Model
'start_date' => 'date',
'end_date' => 'date',
'has_bid' => 'boolean',
'route_leg' => 'integer',
'active' => 'boolean',
'route_leg' => 'integer'
'visible' => 'boolean',
];
public static $rules = [