More styling fixes in admin/flight add/edit form

This commit is contained in:
Nabeel Shahzad
2018-04-09 19:32:38 -05:00
parent 0986cddae1
commit e1c8174b3f
18 changed files with 1758 additions and 236 deletions

View File

@@ -55,6 +55,8 @@ class Flight extends Model
'flight_type',
'route',
'notes',
'start_date',
'end_date',
'has_bid',
'active',
];
@@ -65,6 +67,8 @@ class Flight extends Model
'level' => 'integer',
'distance' => 'float',
'flight_time' => 'integer',
'start_date' => 'date',
'end_date' => 'date',
'has_bid' => 'boolean',
'active' => 'boolean',
];