Format all blade templates to 2 spaces #530 (#531)

This commit is contained in:
Nabeel S
2020-02-01 13:05:56 -05:00
committed by GitHub
parent 06b47d97e0
commit 59d09c0cec
254 changed files with 7123 additions and 7006 deletions

View File

@@ -1,48 +1,48 @@
<table class="table table-hover" id="users-table">
<thead>
<th></th>
<th>@lang('common.name')</th>
<th style="text-align: center"></th>
<th style="text-align: center">@lang('common.airline')</th>
<th style="text-align: center">@lang('user.location')</th>
<th style="text-align: center">{{ trans_choice('common.flight', 2) }}</th>
<th style="text-align: center">{{ trans_choice('common.hour', 2) }}</th>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td style="width: 80px;">
<div class="photo-container">
@if ($user->avatar == null)
<img class="rounded-circle"
src="{{ $user->gravatar(256) }}&s=256"/>
@else
<img src="{{ $user->avatar->url }}">
@endif
</div>
</td>
<td>
<a href="{{ route('frontend.profile.show.public', [$user->id]) }}">
{{ $user->name }}
</a>
</td>
<td align="center">
@if(filled($user->country))
<span class="flag-icon flag-icon-{{ $user->country }}"
title="{{ $country->alpha2($user->country)['name'] }}"></span>
@endif
</td>
<td class="text-center">{{ $user->airline->icao }}</td>
<td class="text-center">
@if($user->current_airport)
{{ $user->curr_airport_id }}
@else
-
@endif
</td>
<td align="center">{{ $user->flights }}</td>
<td align="center">{{ \App\Facades\Utils::minutesToTimeString($user->flight_time) }}</td>
</tr>
@endforeach
</tbody>
<thead>
<th></th>
<th>@lang('common.name')</th>
<th style="text-align: center"></th>
<th style="text-align: center">@lang('common.airline')</th>
<th style="text-align: center">@lang('user.location')</th>
<th style="text-align: center">{{ trans_choice('common.flight', 2) }}</th>
<th style="text-align: center">{{ trans_choice('common.hour', 2) }}</th>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td style="width: 80px;">
<div class="photo-container">
@if ($user->avatar == null)
<img class="rounded-circle"
src="{{ $user->gravatar(256) }}&s=256"/>
@else
<img src="{{ $user->avatar->url }}">
@endif
</div>
</td>
<td>
<a href="{{ route('frontend.profile.show.public', [$user->id]) }}">
{{ $user->name }}
</a>
</td>
<td align="center">
@if(filled($user->country))
<span class="flag-icon flag-icon-{{ $user->country }}"
title="{{ $country->alpha2($user->country)['name'] }}"></span>
@endif
</td>
<td class="text-center">{{ $user->airline->icao }}</td>
<td class="text-center">
@if($user->current_airport)
{{ $user->curr_airport_id }}
@else
-
@endif
</td>
<td align="center">{{ $user->flights }}</td>
<td align="center">{{ \App\Facades\Utils::minutesToTimeString($user->flight_time) }}</td>
</tr>
@endforeach
</tbody>
</table>