@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Restaurant Info

@if (session('success')) @endif @if (session('error')) @endif
@forelse ($restoInfos as $restoInfo) @empty @endforelse
Content Operating Hours Status Created At Actions
{{ Str::limit(strip_tags($restoInfo->content), 120) }}
{{ $restoInfo->getFormattedHours() }}
{{ $restoInfo->getFormattedHours12() }}
is_active ? 'checked' : '' }} onchange="updateActiveStatus({{ $restoInfo->id }}, this.checked)">
{{ $restoInfo->created_at->format('M d, Y H:i') }}
@csrf @method('DELETE')
No resto info found.
@endsection