Don't show in progress PIREPs in admin and order the map data

This commit is contained in:
Nabeel Shahzad
2018-05-09 17:58:51 -05:00
parent 4fa024045d
commit 42c6a11780
3 changed files with 9 additions and 2 deletions

View File

@@ -57,6 +57,7 @@ class AcarsRepository extends Repository
{
return Pirep::with(['airline', 'position', 'aircraft'])
->where(['state' => PirepState::IN_PROGRESS])
->orderBy('created_at', 'desc')
->get();
}