@extends('layouts.super-admin-layout') @section('content')
@csrf
@if(count($opening_hour)) @foreach($opening_hour as $key) @endforeach @endif
# Day Opening Time Closing Time Status Actions
{{ $loop->index +1 }} {{ $key->day }} {{ $key->start_time }} {{ $key->end_time }} {{ $key->status }}
{{$opening_hour->links("pagination::bootstrap-4")}}
@endsection