@extends('layouts.app') @section('title', __('Campaign View')) @push('pre_css') @include('panel.inc.flatpicker.css') @endpush @push('css') @include('panel.inc.datatable.css') @endpush @section('content')
@include('panel.customers._customer-details', ['customer' => $campaign->customer, 'isMini' => true])
@include('panel.campaigns.pages._navigation', ['campaign' => $campaign])
{!! $dataTable->table() !!}
{{--@forelse($reminders as $reminder)
{{ $reminder->title }}
{{ $reminder->due_date ? $reminder->due_date->toDateString() : '-' }}
{{ $reminder->time ? $reminder->time->format('h:i A') : '-' }}
@if(\Gate::allows('campaigns-reminders-delete')) Delete @endif
@empty
Empty

No Record Found!

@endforelse--}}
@stop @push('script') @include('panel.inc.datatable.js') {!! $dataTable->scripts() !!} @include('panel.inc.flatpicker.js') @endpush