@extends('layouts.customer') @section('content')
##{{ $offer->id ?: '' }}
{{ $offer->title ?? '' }}
{{ ucfirst( $offer->elligible ?? '' ) }}
{{ $offer->description ?? '' }}
{{ $activity->description ?? '' }}
@if( '1' == $offer->offer_type ) {{ 'Product' }} @else {{ 'Discount' }} @endif
{{ $offer->product->product_name ?? '' }}
@if( '0' == $offer->discount_type ) {{ 'Flat' }} @elseif( '1' == $offer->discount_type ) {{ 'Percentage' }} @endif
{{ $offer->discount }} @if( '1' == $offer->discount_type ) {{ '%' }} @endif
@if( is_null($offer->expiry_date) ) No expiration @endif @if( $offer->expiry_date ) {{ date('F j, Y', strtotime($offer->expiry_date)) }} @endif