@extends('layouts.admin') @section('content')

Customer List View all Customers

@for ($i=0;$i @if($Customer[$i]->Inactive == 0) @else @endif @endfor
ID Name Phone Email Shop Bought Paid Balance Status Action
{{$Customer[$i]->CustomerID}} {{$Customer[$i]->FirstName}} {{$Customer[$i]->LastName}} {{$Customer[$i]->Phone}} {{$Customer[$i]->Email}} {{$Customer[$i]->ShopName}} {{round($Received[$i])}} {{round($Received[$i]-$Customer[$i]->Balance)}} {{round($Customer[$i]->Balance)}}ActiveInactive @if(Auth::user()->admin==5) @endif
@endsection