phpvms/app/Repositories/SubfleetRepository.php
2017-08-24 13:03:10 -05:00

24 lines
308 B
PHP

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