Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Change and update FPL
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcaussades committed Nov 27, 2023
1 parent b85b0b8 commit 4765c21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
6 changes: 1 addition & 5 deletions resources/views/pirep/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<div class="container px-4 text-center mt-5">
<h4 class="text-primary">INTERNATIONAL FLIGHT PLAN</h4>
<p class=" d-flex justify-content-start text-muted">Fligt Plan id: {{$json["id"]}}</p>
<hr>
<div class="form-group">
<div class="row">
Expand Down Expand Up @@ -109,7 +110,6 @@
<div class="row">
<div class="col">
<label for="Route" class="text-primary d-flex justify-content-start">Other Information :<p class="text-dark ms-2">{{$json["remarks"]}}</p</label>
>
</div>
</div>
<hr>
Expand All @@ -122,10 +122,6 @@
<label for="Route" class="text-primary d-flex justify-content-start">Persons on Board :<p class="text-dark ms-2"> {{$json["pob"]}}</p></label>

</div>
<div class="col">
<label for="Route" class="text-primary d-flex justify-content-start">Fuel on Board :<p class="text-dark ms-2">{{$json["fuel"] ?? ""}} Kg</p></label>

</div>
</div>
<hr>
</div>
Expand Down
9 changes: 4 additions & 5 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</div>
</div>
<div class="container">

@auth
<h4 class="mt-3"> Welcome {{ auth()->user()->name }} ({{auth()->user()->vid}})</h4>
@endauth
Expand All @@ -27,7 +26,7 @@
<div class="col-6">
<div class="card text-white bg-dark">
<div class="card-body bg-dark border-dark text-white text-opacity-75">
<h4 class="card-title text-center text-info">Request</h4>
<h4 class="card-title text-center text-info">Request information</h4>
<p class="card-text d-flex align-items-center"><span class="material-symbols-outlined ms-2">air</span> <span class="ms-2"> Search for metars or users </span></p>
<p class="card-footer text-center"><a href="{{ Route("metars.index")}}" class="btn btn-success">Search IVAO</a></p>
</div>
Expand All @@ -36,10 +35,10 @@
<div class="col-6">
<div class="card text-white bg-dark">
<div class="card-body bg-dark border-dark text-white text-opacity-75">
<h4 class="card-title text-center text-info">FPL</h4>
<p class="card-text d-flex align-items-center"><span class="material-symbols-outlined ms-2">description</span> <span class="ms-2"> Register and store the FPL</span></p>
<h4 class="card-title text-center text-info">Fligth Plan</h4>
<p class="card-text d-flex align-items-center"><span class="material-symbols-outlined ms-2">description</span> <span class="ms-2"> View the FPL submit on IVAO</span></p>
@auth
<p class="card-footer text-center"><a href="#" class="btn btn-success">Comming soon</a></p>
<p class="card-footer text-center"><a href="{{ Route("pirep.index")}}" class="btn btn-success">See My Fligth Plan</a></p>
@endauth
@guest
<p class="card-footer text-center"><a href="{{ Route("auth.login")}}" title="register on the platform only" class="btn btn-secondary">Register Only</a></p>
Expand Down

0 comments on commit 4765c21

Please sign in to comment.