@extends('theme.theme_lite') @section('content')

{{strtoupper($campaign['name'])}}

TODAY

@foreach($today_all_success as $key => $row)
@if($key==0) @endif @if($key==1) @endif @if($key==2) @endif {{$row['name']}}
{{$row['total_success']}}
@endforeach

THIS MONTH

@foreach($this_month_all_success as $key => $row)
@if($key==0) @endif @if($key==1) @endif @if($key==2) @endif {{$row['name']}}
{{$row['total_success']}}
@endforeach

TOTAL

@foreach($all_success as $key => $row)
@if($key==0) @endif @if($key==1) @endif @if($key==2) @endif {{$row['name']}}
{{$row['total_success']}}
@endforeach
@stop @section('script') @stop