#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\PirepField;
use InfyOm\Generator\Common\BaseRepository;
class PirepFieldRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'name'
];
/**
* Configure the Model
**/
public function model()
{
return PirepField::class;
}
}