phpvms/app/Repositories/RankRepository.php

22 lines
405 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;
use App\Repositories\Traits\CacheableRepository;
use Prettus\Repository\Contracts\CacheableInterface;
2017-06-22 01:10:25 +08:00
class RankRepository extends BaseRepository implements CacheableInterface
2017-06-22 01:10:25 +08:00
{
use CacheableRepository;
2017-06-22 01:10:25 +08:00
protected $fieldSearchable = [
'name' => 'like',
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
}
}