Change the PIREP accept/reject buttons

This commit is contained in:
Nabeel Shahzad
2018-01-03 20:39:24 -06:00
parent 1f1acb424c
commit e5c34bc8af
6 changed files with 57 additions and 52 deletions

View File

@@ -218,7 +218,7 @@ class PirepController extends BaseController
}
/**
* Change or update the PIREP status
* Change or update the PIREP status. Just return the new actionbar
* @param Request $request
* @return \Illuminate\View\View
*/
@@ -233,7 +233,7 @@ class PirepController extends BaseController
}
$pirep->refresh();
return view('admin.pireps.pirep_card', ['pirep' => $pirep]);
return view('admin.pireps.actions', ['pirep' => $pirep]);
}
/**