@extends('layouts.app') @section('content')
Customer | Records | Progress | Status | Actions | @foreach($records as $record)
---|---|---|---|---|
{{ $record?->customer?->name }} | {{ $record->total }} | {{ number_format(($record->successful + $record->failed)).' of '.number_format($record->total) }} | {{ ($record->total - ($record->successful + $record->failed)) > 0 ? "Ongoing" : "Complete" }} | Show |