phpvms/app/Http/Controllers/Frontend/DashboardController.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2017-06-10 04:07:29 +08:00
<?php
namespace App\Http\Controllers\Frontend;
use App\Contracts\Controller;
2017-12-02 01:25:58 +08:00
use App\Repositories\PirepRepository;
2018-02-21 12:33:09 +08:00
use Illuminate\Support\Facades\Auth;
/**
* Class DashboardController
*/
2018-01-12 11:35:03 +08:00
class DashboardController extends Controller
2017-06-10 04:07:29 +08:00
{
private $pirepRepo;
2017-12-02 01:25:58 +08:00
2018-02-21 12:33:09 +08:00
/**
* DashboardController constructor.
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @param PirepRepository $pirepRepo
*/
public function __construct(PirepRepository $pirepRepo)
{
2017-12-02 01:25:58 +08:00
$this->pirepRepo = $pirepRepo;
}
2017-06-10 04:07:29 +08:00
/**
* Show the application dashboard.
*/
public function index()
{
2017-12-24 01:17:29 +08:00
$last_pirep = null;
$user = Auth::user();
try {
$last_pirep = $this->pirepRepo->find($user->last_pirep_id);
} catch (\Exception $e) {
}
2017-12-24 01:17:29 +08:00
// Get the current airport for the weather
$current_airport = $user->curr_airport_id ?? $user->home_airport_id;
return view('dashboard.index', [
'user' => $user,
'current_airport' => $current_airport,
'last_pirep' => $last_pirep,
]);
2017-06-22 05:24:19 +08:00
}
2017-06-10 04:07:29 +08:00
}