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