@extends('layouts.customer') @section('content')

Offers

Add Offer
@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($offers) @foreach($offers as $i => $offer) @endforeach @else

No records found!

@endif
Sr No Title Status Created Action
{{ ++$i }} {{ $offer->title }}

@if( $offer->status == 1 ) Active @else Draft @endif

{{ date('M d, y | h:i A',strtotime($offer->created_at)) }}
@endsection