phpvms/resources/views/layouts/default/dashboard/index.blade.php

73 lines
3.2 KiB
PHP
Raw Normal View History

@extends("layouts.${SKIN_NAME}.app")
@section('title', 'dashboard')
@section('content')
<div class="row">
2017-08-05 09:17:04 +08:00
<div class="col-sm-8">
<div class="row">
<div class="col-sm-4">
<div class="card card-primary text-white" style="background: #067ec1; color: #FFF;">
<div class="card-block text-center">
<div style="float: left; position: absolute; display:block; top: 0px;font-size: 150px">
<i class="fas fa-plane" style="opacity: .1;"></i>
</div>
2017-08-05 09:17:04 +08:00
<h4 class="">{!! $user->flights !!}</h4>
<h5 class="description" style="color: white;">{{ str_plural('flight', $user->flights) }}</h5>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card card-primary text-white" style="background: #067ec1; color: #FFF;">
<div class="card-block text-center">
<div style="float: left; position: absolute; display:block; top: 0px;font-size: 150px">
<i class="far fa-clock" style="opacity: .1;"></i>
</div>
2017-12-24 01:17:29 +08:00
<h4 class="">{!! \App\Facades\Utils::minutesToTimeString($user->flight_time, false)!!}</h4>
2017-08-05 09:17:04 +08:00
<h5 class="description" style="color: white;">total hours</h5>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card card-primary text-white" style="background: #067ec1; color: #FFF;">
<div class="card-block text-center">
<div style="float: left; position: absolute; display:block; top: 0px;font-size: 150px">
<i class="fas fa-map-marker" style="opacity: .1;"></i>
</div>
2018-02-12 23:47:12 +08:00
@if($user->current_airport)
<h4 class="">{!! $user->current_airport->icao !!}</h4>
@else
<h4 class="">-</h4>
@endif
2017-08-05 09:17:04 +08:00
<h5 class="description" style="color: white;">current airport</h5>
</div>
</div>
</div>
</div>
2017-12-24 01:17:29 +08:00
@if($last_pirep === null)
2017-08-05 09:20:30 +08:00
<div class="card">
<div class="nav nav-tabs" role="tablist" style="background: #067ec1; color: #FFF;">
Your Last Report
</div>
2017-12-24 01:17:29 +08:00
<div class="card-block" style="text-align:center;">
No reports yet. <a href="{!! route('frontend.pireps.create') !!}">File one now.</a>
2017-08-05 09:20:30 +08:00
</div>
</div>
2017-12-24 01:17:29 +08:00
@else
<div class="nav nav-tabs" role="tablist" style="background: #067ec1; color: #FFF;">
Your Last Report
</div>
@include("layouts.${SKIN_NAME}.pireps.pirep_card", ['pirep' => $last_pirep])
2017-12-24 01:17:29 +08:00
@endif
2017-08-05 09:20:30 +08:00
{{ Widget::latestNews(['count' => 1]) }}
2017-08-05 09:20:30 +08:00
</div>
2017-08-05 09:17:04 +08:00
<div class="col-sm-4">
2018-01-11 06:05:02 +08:00
{{ Widget::latestPireps(['count' => 5]) }}
{{ Widget::latestPilots(['count' => 5]) }}
</div>
</div>
@endsection