phpvms/app/Repositories/FlightRepository.php
2017-08-24 13:03:10 -05:00

25 lines
352 B
PHP

<?php
namespace App\Repositories;
use App\Models\Flight;
class FlightRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'dpt_airport_id',
'arr_airport_id'
];
/**
* Configure the Model
**/
public function model()
{
return Flight::class;
}
}