Cleaned up select box stuff, moved to repositories
This commit is contained in:
@@ -20,4 +20,20 @@ class AirlineRepository extends BaseRepository implements CacheableInterface
|
||||
{
|
||||
return Airline::class;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the list of airline formatted for a select box
|
||||
* @return array
|
||||
*/
|
||||
public function selectBoxList()
|
||||
{
|
||||
$retval = [];
|
||||
$items = $this->all();
|
||||
|
||||
foreach ($items as $i) {
|
||||
$retval[$i->id] = $i->name;
|
||||
}
|
||||
|
||||
return $retval;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user