@extends('admin-dining.layouts.app') @section('title', 'Dining Programs') @section('page-title', 'Lalit Dining Programs') @section('page-actions') Add Dining Program @endsection @section('content')
All Dining Programs
@forelse($diningPrograms as $program) @empty @endforelse
Image Title Description Order Status Actions
@if($program->image) {{ $program->title }} @else No image @endif {{ $program->title }} {{ Str::limit($program->description, 60) }} {{ $program->sort_order }} @if($program->status == 'active') Active @else Inactive @endif Edit
@csrf @method('DELETE')
No dining programs found. Create your first dining program
@endsection