Edit Hotel Guide Category Update category information
Category Information
@if ($errors->any())
@endif
@if (session('success'))
Validation Errors
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
Category Details
Category ID: {{ $category->category_id }}
Created: {{ $category->created_at->format('M d, Y - H:i') }}
Last Updated: {{ $category->updated_at->format('M d, Y - H:i') }}
Related Records
This category has {{ $category->getRelatedRecordsCount() }} related record(s):
@if ($category->hotelGuides()->exists())Hotel Guides: {{ $category->hotelGuides()->count() }} records
@endif
Note: Deleting this category will also delete all related records due to
cascade constraints.