phpvms/app/Repositories/PirepRepository.php

24 lines
316 B
PHP
Raw Normal View History

2017-06-29 08:56:10 +08:00
<?php
namespace App\Repositories;
use App\Models\Pirep;
class PirepRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'user_id'
];
/**
* Configure the Model
**/
public function model()
{
return Pirep::class;
}
}