phpvms/app/Repositories/AircraftRepository.php
2017-06-08 20:37:51 -05:00

29 lines
446 B
PHP

<?php
namespace App\Repositories;
use App\Models\Aircraft;
use InfyOm\Generator\Common\BaseRepository;
class AircraftRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'icao',
'name',
'full_name',
'registration',
'active',
];
/**
* Configure the Model
**/
public function model()
{
return Aircraft::class;
}
}