Fix flight page errors and some naming fixes

This commit is contained in:
Nabeel Shahzad
2018-03-08 08:51:36 -06:00
parent fefc6bc22a
commit f13c961863
27 changed files with 125 additions and 89 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Models;
use App\Models\Traits\Expensable;
use App\Models\Traits\ExpensableTrait;
use Illuminate\Notifications\Notifiable;
/**
@@ -12,7 +12,7 @@ use Illuminate\Notifications\Notifiable;
*/
class Airport extends BaseModel
{
use Expensable;
use ExpensableTrait;
use Notifiable;
public $table = 'airports';