@extends('layouts.default_module')
@section('module_name')
Campaign
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
@endsection
@section('table')
| Vendor Name |
Campaign Name |
Category Name |
Landing Name |
Start Date |
End Date |
@foreach($campaign as $c)
{!! ucwords($c->user->name ) !!} |
{!! ucwords($c->title ) !!} |
{!! ucwords($c->category->title ?? 'No category Selected') !!} |
{!! ucwords($c->landing_page->title ?? 'No landing Selected' ) !!} |
{!! date('d-m-Y ', $c->start_date) !!} |
{!! date('d-m-Y ', $c->end_date) !!} |
@endforeach
@section('pagination')
{{-- {!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!}
{!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!}
{!! Form::close() !!} --}}
@endsection
@stop