@extends('admin.layouts.app') @section('title', 'Offers') @section('content')
Add Offer
@foreach($offers as $o)
@if($o->banner_image)@endif

{{ $o->title }}

{{ Str::limit($o->description, 80) }}

{{ $o->discount_percentage ? $o->discount_percentage.'% OFF' : $siteSettings['currency'].$o->fixed_discount.' OFF' }}

{{ $o->start_date->format('M d') }} - {{ $o->end_date->format('M d, Y') }} @if($o->isExpired()) Expired@endif

@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach
{{ $offers->links() }}
@endsection