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

Leads List

@foreach($productList as $stud) @if($stud->is_promo == '1') @else @endif @endforeach
# Customer Name Product Name Email Mobile Created At POS ID POS Name Promo User
{{ $stud->id }} {{ $stud->name }} {{ $stud->product_name }} {{ $stud->email }} {{ $stud->mobile }} {{ $stud->created_at }} {{ $stud->pos_id }} {{ $stud->full_name }}YesNo
@else
No leads found
@endif {{ $productList->links() }}
@endsection