@extends('layout.app') @section('title') ICARD Report @endsection @section('pagetitle') ICARD Report @endsection @section('content')

ICARD Report

@foreach ($customers as $customer) @endforeach
S/N Account Name Account Number Email Date of Birth Phone Account Status Created Date
{{ $loop->iteration }} {{ ucfirst($customer->first_name) }} {{ ucfirst($customer->last_name) }} {{ $customer->acctno }} {{ $customer->email }} {{ $customer->dob }} {{ $customer->phone }} {{ $customer->status }} {{ $customer->created_at }}
@endsection