This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f13846e
commit d07dcb3
Showing
3 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
@extends("metar-base") | ||
|
||
@section("title", "Information Air Traffic Control Ivao") | ||
|
||
@include("navbar-metar") | ||
|
||
@section('content') | ||
|
||
<div class="container"> | ||
<p class="text-center"> | ||
<div class="fw-bolder fs-3 text-primary text-center text-uppercase mt-5">{{$icao}} Information</div> | ||
</p> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="card mt-3"> | ||
<div class="card-header"> | ||
<h5 class="card-title">Metar</h5> | ||
</div> | ||
<div class="card-body"> | ||
<div class="text-center"> | ||
<div class="fw-bolder fs-5 text-primary text-center text-uppercase mt-5">{{$metar["metar"]}}</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-3"> | ||
<div class="card mt-3"> | ||
<div class="card-header"> | ||
<h5 class="card-title">Departure</h5> | ||
</div> | ||
<div class="card-body"> | ||
<div class="text-center"> | ||
<div class="fw-bolder fs-5 text-primary text-center text-uppercase mt-5">{{$atc["departure"]["count"]}}</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-3"> | ||
<div class="card mt-3"> | ||
<div class="card-header"> | ||
<h5 class="card-title">Arrival</h5> | ||
</div> | ||
<div class="card-body"> | ||
<div class="text-center"> | ||
<div class="fw-bolder fs-5 text-primary text-center text-uppercase mt-5">{{$atc["arrival"]["count"]}}</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters