phpvms/app/Repositories/SubfleetRepository.php

24 lines
308 B
PHP
Raw Normal View History

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