Simple PIREP overview page (map not working atm)

This commit is contained in:
Nabeel Shahzad
2017-12-19 15:19:06 -06:00
parent 45d12c82ba
commit f2131093c4
14 changed files with 272 additions and 326 deletions

View File

@@ -107,7 +107,8 @@ class PirepController extends Controller
public function show($id)
{
$pirep = Pirep::where('id', $id);
#$pirep = Pirep::where('id', $id);
$pirep = $this->pirepRepo->find($id);
return $this->view('pireps.show', [
'pirep' => $pirep,
]);