phpvms/app/Repositories/AirlineRepository.php

44 lines
827 B
PHP
Raw Normal View History

2017-06-09 09:02:52 +08:00
<?php
namespace App\Repositories;
2017-06-20 00:50:25 +08:00
use App\Models\Airline;
use App\Repositories\Traits\CacheableRepository;
use Prettus\Repository\Contracts\CacheableInterface;
2017-06-09 09:02:52 +08:00
class AirlineRepository extends BaseRepository implements CacheableInterface
2017-06-09 09:02:52 +08:00
{
use CacheableRepository;
2017-06-09 09:02:52 +08:00
protected $fieldSearchable = [
'code',
'name' => 'like',
2017-06-09 09:02:52 +08:00
];
public function model()
{
2017-06-20 00:50:25 +08:00
return Airline::class;
2017-06-09 09:02:52 +08:00
}
/**
* Return the list of airline formatted for a select box
* @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;
}
2017-06-09 09:02:52 +08:00
}