@extends('admin.layout')
@section('content')
@if (count($timeframes) == 0)
NO TIMEFRAME AVAILABLE
@else
| Start Time |
End Time |
Max Orders |
Actions |
@foreach ($timeframes as $tf)
| {{$tf->start}} |
{{$tf->end}} |
{{$tf->max_orders}} |
|
@endforeach
@endif
@includeIf('admin.product.order.delivery_time.edit-timeframe')
@endsection