#21 PIREP scaffolding

This commit is contained in:
Nabeel Shahzad
2017-06-28 19:56:10 -05:00
parent cd5f58b0a1
commit fc1220178b
8 changed files with 95 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Repositories;
use App\Models\Pirep;
use InfyOm\Generator\Common\BaseRepository;
class PirepRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'user_id'
];
/**
* Configure the Model
**/
public function model()
{
return Pirep::class;
}
}