2017-06-22 01:10:25 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Interfaces\Repository;
|
2017-06-22 02:44:30 +08:00
|
|
|
use App\Models\Rank;
|
2017-12-01 10:28:45 +08:00
|
|
|
use Prettus\Repository\Contracts\CacheableInterface;
|
2018-02-21 12:33:09 +08:00
|
|
|
use Prettus\Repository\Traits\CacheableRepository;
|
2017-06-22 01:10:25 +08:00
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class RankRepository
|
|
|
|
*/
|
|
|
|
class RankRepository extends Repository implements CacheableInterface
|
2017-06-22 01:10:25 +08:00
|
|
|
{
|
2017-12-01 10:28:45 +08:00
|
|
|
use CacheableRepository;
|
2017-06-22 01:10:25 +08:00
|
|
|
protected $fieldSearchable = [
|
2017-12-02 00:53:33 +08:00
|
|
|
'name' => 'like',
|
2017-06-22 01:10:25 +08:00
|
|
|
];
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-06-22 01:10:25 +08:00
|
|
|
public function model()
|
|
|
|
{
|
2017-06-22 02:44:30 +08:00
|
|
|
return Rank::class;
|
2017-06-22 01:10:25 +08:00
|
|
|
}
|
|
|
|
}
|