phpvms/app/Repositories/SubfleetRepository.php
2017-12-06 22:48:42 -06:00

23 lines
443 B
PHP

<?php
namespace App\Repositories;
use App\Models\Subfleet;
use App\Repositories\Traits\CacheableRepository;
use Prettus\Repository\Contracts\CacheableInterface;
class SubfleetRepository extends BaseRepository implements CacheableInterface
{
use CacheableRepository;
protected $fieldSearchable = [
'name' => 'like',
'type' => 'like',
];
public function model()
{
return Subfleet::class;
}
}