@extends('layouts.admin.main') @section('title','Campaign') @section('style') @endsection @section('rightbar-content')
@if(!empty($campaigns)) @foreach($campaigns as $key => $v) @endforeach @endif
S.No Title Image Created At Start Date End Date Status Action
{{ $key + 1 }} {{ $v->title }} {{\Carbon\Carbon::parse($v->created_at)->diffForHumans() }} {{ date('d-m-Y',strtotime($v->start_date)) }} {{ date('d-m-Y',strtotime($v->end_date)) }} @if($v->status == 1) Active @else Inactive @endif  
@endsection @section('script') @endsection