You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.5 KiB
58 lines
2.5 KiB
2 years ago
|
@foreach ($restaurants as $key => $restaurant)
|
||
|
<tr>
|
||
|
<td>{{ $key + $restaurants->firstItem() }}</td>
|
||
|
<td>
|
||
|
<a href="{{ route('admin.restaurant.view', $restaurant['id']) }}" alt="view restaurant" class="table-rest-info">
|
||
|
<img onerror="this.src='{{ asset('public/assets/admin/img/100x100/food-default-image.png') }}'"
|
||
|
src="{{ asset('storage/app/public/restaurant') }}/{{ $restaurant['logo'] }}">
|
||
|
<div class="info">
|
||
|
<span class="d-block text-body">
|
||
|
{{ Str::limit($restaurant->name, 20, '...') }}<br>
|
||
|
<!-- Rating -->
|
||
|
<span class="rating">
|
||
|
@php($restaurant_rating = $restaurant['rating'] == null ? 0 : array_sum($restaurant['rating']) / 5)
|
||
|
<i class="tio-star"></i> {{ $restaurant_rating }}
|
||
|
</span>
|
||
|
<!-- Rating -->
|
||
|
</span>
|
||
|
</div>
|
||
|
</a>
|
||
|
</td>
|
||
|
<td>
|
||
|
<span class="d-block owner--name text-center">
|
||
|
{{ $restaurant->restaurant_sub_update_application->package->package_name }}
|
||
|
</span>
|
||
|
|
||
|
</td>
|
||
|
<td>
|
||
|
{{ \App\CentralLogics\Helpers::format_currency($restaurant->restaurant_sub_update_application->package->price) }}
|
||
|
|
||
|
</td>
|
||
|
<td>
|
||
|
{{ $restaurant->restaurant_sub_update_application->expiry_date->format('d-M-Y') }}
|
||
|
</td>
|
||
|
<td>
|
||
|
@if ($restaurant->vendor->status == 1)
|
||
|
@if ($restaurant->restaurant_sub_update_application->status == 1)
|
||
|
<span class="badge badge-soft-success">{{ translate('messages.active') }}</span>
|
||
|
@else
|
||
|
<span class="badge badge-soft-danger">{{ translate('messages.Expired') }}</span>
|
||
|
@endif
|
||
|
@else
|
||
|
<span class="badge badge-soft-danger">{{ translate('messages.inactive_vendor') }}</span>
|
||
|
|
||
|
@endif
|
||
|
</td>
|
||
|
<td>
|
||
|
<div class="btn--container justify-content-center">
|
||
|
<a class="btn btn-sm btn--warning btn-outline-warning action-btn"
|
||
|
href="{{ route('admin.restaurant.view', ['restaurant' => $restaurant->id, 'tab' => 'subscriptions']) }}"
|
||
|
title="{{ translate('messages.view') }} {{ translate('messages.restaurant') }}"><i
|
||
|
class="tio-invisible"></i>
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
@endforeach
|