@extends('cms.layout.app') @section('content')
Total Campaings

{{$reports->count()}}

Cost

${{number_format($total_cost, 2 , ',' , '.')}}

Revenue

${{number_format($total_revenue, 2 , ',' , '.')}}

Margin

${{number_format($total_margin, 2 , ',' , '.')}}

@foreach ($reports as $report) @endforeach
Name Clicks Impressions CTR Avarage CPC Cost Search Impr. Share Revenue Margin Transactions Conv. Rate ROI Status
{{$report->campaign}} {{$report->clicks}} {{$report->impressions}} {{$report->ctr}} ${{number_format($report->avgCPC,2,',','.') }} ${{number_format($report->cost,2,',','.') }} {{$report->searchImprShare}} ${{number_format($report->revenue,2,',','.') }} ${{number_format($report->margin,2,',','.') }} {{$report->transactions}} {{$report->convRate}} ${{number_format($report->roi,2 , ',' , '.')}} {{$report->campaignState}}
@endsection @section('page-script') @endsection