| {{ trans('services.tel') }} |
{{ trans('services.name') }} |
{{ trans('services.duration') }} |
{{ trans('services.s_status') }} |
{{ trans('dashboard.crud.actions') }} |
@if ($services->getTotal() > 0)
@foreach ($services as $service)
| {{ $service->tel }}@if ($service->call > 0) {{ $service->call }} @endif |
{{ $service->product_name }} |
{{ trans('services.durations.'. $service->duration) }} |
{{ s_status($service->status) }} |
{{ Form::open(['route' => 'services.callCheckout']) }}
{{ Form::hidden('service_id', $service->id) }}
@if (user_can('call_service'))
@endif
@if (user_can('checkout_service'))
@endif
{{ Form::close() }}
|
@endforeach
@else
| {{ trans('services.no_receipt') }} |
@endif
{{ $services->appends(Request::except('page'))->links() }}