Skip to content

Commit

Permalink
Fix Style
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHetem committed Nov 26, 2023
1 parent 41d5003 commit 0d78f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Resources/FlightResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class FlightResource extends Resource
public static function form(Form $form): Form
{
$airportRepo = app(AirportRepository::class);
$airports = $airportRepo->all()->mapWithKeys(fn ($item) => [$item->id => $item->icao . ' - ' . $item->name]);
$airports = $airportRepo->all()->mapWithKeys(fn ($item) => [$item->id => $item->icao.' - '.$item->name]);

return $form
->schema([
Expand Down

0 comments on commit 0d78f34

Please sign in to comment.