@extends('layout.app') @section('title', $title) @section('description', $description) @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@foreach($customers as $customer) @endforeach
Channel Customer Total Trade Trade Volume Action
{{ $customer->channel_name }}
{{ $customer->description }}
{{ $customer->sales_logs_count }}
${{ $customer->sales_logs_sum_amount ?? 0 }}
@if($customers->isEmpty())

No customers found.

@endif
@endsection