@extends('layout.app') @section('title') Dom Customers @endsection @section('pagetitle') Dom Accounts @endsection @section('content')
@can('create customer') Add Customer Via CSV Add Customer @endcan
@include('includes.success') @include('includes.errors')
@csrf
@foreach ($clcustomers as $item)
Sn Name Business Name Account No Ref AccountNo Account Type Account Category Phone Gender Email Reg Date Status
{{$i+1}} {{ucwords($item->last_name." ".$item->first_name)}} {{!is_null($item->business_name) ? ucwords($item->business_name) : "N/A"}} {{$item->acctno}} {{!is_null($item->refacct) ? $item->refacct : "N/A"}} {{$item->account_type == '1' ? 'Savings Account' : 'Current Account'}}