phpvms/app/Repositories/FlightRepository.php
2017-06-17 17:25:36 -05:00

26 lines
396 B
PHP

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