@extends('layouts.seller_panel')
@section('content')
Buyer Name |
Total Requests |
Pending Requests |
Details |
Action |
@foreach($requests as $data)
{{ $data->buyer_name }} |
{{ $data->total_requests }} |
{{ $data->new_requests }} |
VIEW
|
@if($data->new_requests)
ALLOW ALL
|
@else
|
@endif
@endforeach
@endsection