phpvms/app/Repositories/AirlineRepository.php

50 lines
940 B
PHP
Raw Normal View History

2017-06-09 09:02:52 +08:00
<?php
namespace App\Repositories;
use App\Interfaces\Repository;
2017-06-20 00:50:25 +08:00
use App\Models\Airline;
use Prettus\Repository\Contracts\CacheableInterface;
2018-02-21 12:33:09 +08:00
use Prettus\Repository\Traits\CacheableRepository;
2017-06-09 09:02:52 +08:00
/**
* Class AirlineRepository
*/
class AirlineRepository extends Repository 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
2018-08-27 00:40:04 +08:00
*
* @param mixed $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;
}
2017-06-09 09:02:52 +08:00
}