@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif

{{ __('Update Settings') }}

{{-- Nav links --}} @include('user.pages.edit-store.include.nav-link', ['link' => 'business-hours'])
{{-- Update business hours --}}
@csrf

{{ __('Business Hours') }}

{{-- Business hours (Monday to Sunday — Start and End Time) --}} @php $hours = $storeHours && $storeHours->business_hours ? json_decode($storeHours->business_hours) : null; @endphp @foreach (['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'] as $day)
{{ __('to') }}
@endforeach
{{-- Footer --}} @include('user.includes.footer')
@endsection