phpvms/app/Repositories/AircraftRepository.php

29 lines
446 B
PHP
Raw Normal View History

2017-06-09 09:37:51 +08:00
<?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;
}
}