phpvms/app/Repositories/SubfleetRepository.php

50 lines
955 B
PHP
Raw Normal View History

<?php
namespace App\Repositories;
use App\Contracts\Repository;
use App\Models\Subfleet;
use Prettus\Repository\Contracts\CacheableInterface;
2018-02-21 12:33:09 +08:00
use Prettus\Repository\Traits\CacheableRepository;
class SubfleetRepository extends Repository implements CacheableInterface
{
use CacheableRepository;
2017-08-25 02:03:10 +08:00
protected $fieldSearchable = [
'name' => 'like',
'type' => 'like',
];
/**
* @return string
*/
public function model()
{
return Subfleet::class;
}
/**
* Return the list of aircraft formatted for a select box
*
* @param bool $add_blank
*
* @return array
*/
public function selectBoxList($add_blank = false): array
{
$retval = [];
$items = $this->all();
if ($add_blank) {
$retval[''] = '';
}
foreach ($items as $i) {
$retval[$i->id] = $i->name;
}
return $retval;
}
}