phpvms/app/Repositories/FlightRepository.php
2017-12-01 10:53:33 -06:00

26 lines
528 B
PHP

<?php
namespace App\Repositories;
use App\Models\Flight;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Traits\CacheableRepository;
class FlightRepository extends BaseRepository implements CacheableInterface
{
use CacheableRepository;
protected $fieldSearchable = [
'arr_airport_id',
'dpt_airport_id',
'flight_number' => 'like',
'route' => 'like',
'notes' => 'like',
];
public function model()
{
return Flight::class;
}
}