@extends("front.layout.master") @section('title', __("All deals")) @section('meta_tags') @endsection @section("body")
@forelse($deals as $deal)
{{ $deal->background_image }}
{{ $deal->title }}

{{__("Sale Start Date:")}} {{ date('d-m-Y @ h:i A',strtotime($deal->start_date)) }}

{{__("Sale End Date:")}} {{ date('d-m-Y @ h:i A',strtotime($deal->end_date)) }}

{{__("View Deal")}}
@empty

{{ __("No deals") }}

@endforelse
{!! $deals->links() !!}
@endsection