@extends('admin-dining.layouts.app') @section('title', 'Member Offers') @section('page-title', 'Member Offers') @section('page-actions') Add Member Offer @endsection @section('content')
All Member Offers
@forelse($memberOffers as $offer) @empty @endforelse
Image Title Location Discount Status Featured Actions
@if($offer->image) {{ $offer->title }} @else No image @endif {{ $offer->title }} {{ $offer->location ?? '-' }} {{ $offer->discount_text ?? '-' }} @if($offer->status == 'published') Published @elseif($offer->status == 'draft') Draft @else Expired @endif @if($offer->is_featured) @else @endif Edit
@csrf @method('DELETE')
No member offers found. Create your first member offer
@endsection