@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
Client

Client List

{{-- Add New Buyer --}}
@if(Session::has('message')) @endif
@foreach ($buyer as $buy) {{-- --}} @endforeach
S.No Client Name Status Points Update new points Action
{{ $loop->index+1 }} {{ $buy->full_name }} @if ($buy->points){{ $buy->points->points }}@else 0 @endif
@csrf
@if ($buy->status == 0) @endif @if ($buy->status == 1) @endif {{-- --}}
@endsection @section('scripts') @endsection