Skip to content

Commit

Permalink
Add airports to import-all
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Aug 18, 2024
1 parent baadd63 commit d0aba60
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/Console/Commands/ImportAllModels.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace App\Console\Commands;

use App\Models\Airport;
use App\Models\Attendance;
use App\Models\DuesTransaction;
use App\Models\Event;
Expand Down Expand Up @@ -39,6 +40,10 @@ class ImportAllModels extends Command
*/
public function handle(): int
{
$this->call('scout:import', [
'model' => Airport::class,
]);

$this->call('scout:import', [
'model' => Attendance::class,
]);
Expand Down

0 comments on commit d0aba60

Please sign in to comment.