phpvms/app/Repositories/AircraftRepository.php
2017-06-24 14:00:56 -05:00

27 lines
389 B
PHP

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