phpvms/app/Repositories/FareRepository.php
2017-11-22 11:55:08 -06:00

33 lines
500 B
PHP

<?php
namespace App\Repositories;
use App\Models\Fare;
class FareRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'code',
'name',
'price',
'cost',
'notes',
'active'
];
/**
* Configure the Model
**/
public function model()
{
return Fare::class;
}
public function findByCode($code) {
return $this->findByField('code', $code)->first();
}
}