#23 refactoring for ranks

This commit is contained in:
Nabeel Shahzad
2017-06-21 13:44:30 -05:00
parent 4f295cec79
commit cb631292b9
22 changed files with 228 additions and 195 deletions

View File

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