@extends('layouts.posmaster') @section('title', 'Customer Info') @section('content')
@if (count($productList) > 0)

Child Agents

@foreach($productList as $list) @endforeach
# Customer Name Email Mobile Created At
{{ $list->id }} {{ $list->first_name}} {{ $list->last_name}} {{ $list->email }} {{ $list->mobile }} {{ $list->created_at }}
@else
No agents found
@endif {{ $productList->links() }}
@endsection