@extends('layouts.app') @section('content')
{{ _lang('Name') }} | {{ _lang('Email') }} | {{ _lang('Type') }} | {{ _lang('Orders') }} | {{ _lang('Products') }} | {{ _lang('Total Spend') }} | @if(isset($report_data)) @foreach($report_data as $report)
---|---|---|---|---|---|
{{ $report->customer_name }} | {{ $report->customer_email }} | {{ $report->customer_id != NULL ? _lang('Customer') : _lang('Guest') }} | {{ $report->total_orders }} | {{ $report->total_products }} | {!! xss_clean(decimalPlace($report->total, $currency)) !!} |