@extends('Layouts/dashboard') @section('submenu') @include( 'Plugins/Payment/Views/Elements/Zone/submenu', ['extra' => view( 'Plugins/Payment/Views/Elements/LinesOrdersBulk/add_new', ['venue_id' => $venue->id]) ] ) @endsection @section('content') @foreach ($data as $row) @endforeach
@t('Label') @t('Date & Time') @t('Days of the week') @t('Resources')
{{ $row->name }}
@date($row->start) - @date($row->end)
@time((new DateTime($row->start))->format('H:i')) - @time((new DateTime($row->end))->format('H:i'))
@if ($row->weekdays) @foreach ($row->weekdays as $weekday) {{ date('D', strtotime("Next Sunday +{$weekday} days")) }} @endforeach @endif @foreach ($resources as $zone)
{{ $zone['name'] }}

{{ implode(',', $zone['lines']) }}

@endforeach
{!! pagination(['total' => $pagination_total]) !!}
@endsection