phpvms/app/Repositories/FareRepository.php

34 lines
660 B
PHP
Raw Normal View History

<?php
namespace App\Repositories;
use App\Interfaces\Repository;
use App\Models\Fare;
use Prettus\Repository\Contracts\CacheableInterface;
2018-02-21 12:33:09 +08:00
use Prettus\Repository\Traits\CacheableRepository;
/**
* Class FareRepository
* @package App\Repositories
*/
class FareRepository extends Repository implements CacheableInterface
{
use CacheableRepository;
protected $fieldSearchable = [
'code' => 'like',
'name' => 'like',
'notes' => 'like',
];
public function model()
{
return Fare::class;
}
public function findByCode($code)
{
return $this->findByField('code', $code)->first();
}
}