phpvms/app/Repositories/RankRepository.php

25 lines
340 B
PHP
Raw Normal View History

2017-06-22 01:10:25 +08:00
<?php
namespace App\Repositories;
2017-06-22 02:44:30 +08:00
use App\Models\Rank;
2017-06-22 01:10:25 +08:00
use InfyOm\Generator\Common\BaseRepository;
2017-06-22 02:44:30 +08:00
class RankRepository extends BaseRepository
2017-06-22 01:10:25 +08:00
{
/**
* @var array
*/
protected $fieldSearchable = [
2017-06-22 02:44:30 +08:00
2017-06-22 01:10:25 +08:00
];
/**
* Configure the Model
**/
public function model()
{
2017-06-22 02:44:30 +08:00
return Rank::class;
2017-06-22 01:10:25 +08:00
}
}