@extends('layouts.app', ['activePage' => 'couponoffer', 'titlePage' => __('')])
@section('content')
| {{__("jamia.sl_no")}} |
{{__("jamia.name")}} |
{{__("jamia.offer_cat")}} |
{{__("jamia.cust_phone")}} |
{{__("jamia.valid")}} |
{{__("jamia.image")}} |
{{__("jamia.action") }} |
@foreach ($offers as $offer)
| {{ $i++; }} |
{{ $offer->offer_name }} |
@if($offer->offer_categories_id > 0 && isset($offer->offerCategory))
{{ $offer->offerCategory->name}} @endif
|
{{ $offer->contact_no }} |
{{ date('d/m/Y',strtotime($offer->from_dt)) }}-{{ date('d/m/Y',strtotime($offer->to_dt)) }} |
|
|
@endforeach
@endsection
@section('js')
@endsection