@extends('admin_base') @section('title', 'Best Deals') @section('content')

Best Deals

Add New Deal
@foreach($deals as $deal) @endforeach
ID Name Start Date End Date Status Products Actions
{{ $deal->id }} {{ $deal->name }} {{ $deal->start_date->format('M d, Y h:i A') }} {{ $deal->end_date->format('M d, Y h:i A') }} {{ $deal->status ? 'Active' : 'Inactive' }} {{ $deal->products->count() }} products
@endsection @section('script') @endsection