phpvms/app/Repositories/SubfleetRepository.php
2017-06-22 20:55:45 -05:00

25 lines
360 B
PHP

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