831b72fb2b
* Set a default model value for airports on PIREP * Fix airport icao reference * Default airport models
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Contracts\Repository;
|
|
use App\Models\Airport;
|
|
use Prettus\Repository\Contracts\CacheableInterface;
|
|
use Prettus\Repository\Traits\CacheableRepository;
|
|
|
|
class AirportRepository extends Repository implements CacheableInterface
|
|
{
|
|
use CacheableRepository;
|
|
|
|
protected $fieldSearchable = [
|
|
'icao' => 'like',
|
|
'name' => 'like',
|
|
];
|
|
|
|
public function model()
|
|
{
|
|
return Airport::class;
|
|
}
|
|
|
|
/**
|
|
* Return the list of airports formatted for a select box
|
|
*
|
|
* @param bool $add_blank
|
|
* @param bool $only_hubs
|
|
*
|
|
* @return array
|
|
*/
|
|
public function selectBoxList($add_blank = false, $only_hubs = false): array
|
|
{
|
|
$retval = [];
|
|
$where = [];
|
|
|
|
if ($only_hubs) {
|
|
$where['hub'] = 1;
|
|
}
|
|
|
|
$items = $this->orderBy('icao', 'asc')->findWhere($where);
|
|
|
|
if ($add_blank) {
|
|
$retval[''] = '';
|
|
}
|
|
|
|
foreach ($items as $i) {
|
|
$s = $i->icao.' - '.$i->name;
|
|
if (!$only_hubs && $i->hub) {
|
|
$s .= ' (hub)';
|
|
}
|
|
|
|
$retval[$i->icao] = $s;
|
|
}
|
|
|
|
return $retval;
|
|
}
|
|
}
|