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

View Restaurant Info

@if (session('success')) @endif @if (session('error') || $errors->any()) @endif

Restaurant Info Details

Restaurant Information {{ $restoInfo->is_active ? 'Active' : 'Inactive' }}
{{ $restoInfo->content }}
Operating Hours

{{ $restoInfo->getFormattedHours() }}

{{ $restoInfo->getFormattedHours12() }}

Opening Time

{{ $restoInfo->open_time ? $restoInfo->open_time->format('H:i') : 'Not set' }} {{ $restoInfo->open_time ? $restoInfo->open_time->format('g:i A') : 'Not set' }}

Closing Time

{{ $restoInfo->close_time ? $restoInfo->close_time->format('H:i') : 'Not set' }} {{ $restoInfo->close_time ? $restoInfo->close_time->format('g:i A') : 'Not set' }}

Actions
Edit Resto Info Back To List
@csrf @method('DELETE')
Information
Created
{{ $restoInfo->created_at->format('M d, Y \a\t H:i') }}
Last Updated
{{ $restoInfo->updated_at->format('M d, Y \a\t H:i') }}
Status
{{ $restoInfo->is_active ? 'Active' : 'Inactive' }}
Hours Format
24h: {{ $restoInfo->getFormattedHours() }}
12h: {{ $restoInfo->getFormattedHours12() }}
@endsection