Skip to content

Commit

Permalink
🎨 improve mobile trip view in backend (#3086)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKrisKrisu authored Jan 1, 2025
1 parent 462dbff commit ff78b5f
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions resources/views/admin/trip/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</div>
</div>

<div class="card">
<div class="card mb-3">
<div class="card-body">
<h2 class="card-title fs-5">Checkins</h2>
@if($trip->checkins->count() === 0)
Expand Down Expand Up @@ -112,12 +112,12 @@
</div>
</div>
<div class="col-md-8">
<div class="card">
<div class="card mb-3">
<div class="card-body">
<h2 class="card-title fs-5">Stopovers</h2>

<table class="table table-striped">
<thead>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">TRWL-ID</th>
Expand All @@ -127,8 +127,8 @@
<th scope="col">Ankunft soll / ist</th>
<th scope="col">Abfahrt soll / ist</th>
</tr>
</thead>
<tbody>
</thead>
<tbody>
@foreach($trip->stopovers as $stopover)
<tr>
<td>
Expand Down Expand Up @@ -157,8 +157,9 @@
</td>
</tr>
@endforeach
</tbody>
</table>
</tbody>
</table>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit ff78b5f

Please sign in to comment.