Files
phpvms/app/Repositories/RankingRepository.php
2017-06-21 12:10:25 -05:00

25 lines
357 B
PHP

<?php
namespace App\Repositories;
use App\Models\Ranking;
use InfyOm\Generator\Common\BaseRepository;
class RankingRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
];
/**
* Configure the Model
**/
public function model()
{
return Ranking::class;
}
}