@extends('master.layout.dashboard')
@section('title', 'All Buyer Sellers')
@section('content')
| # |
Name |
Mobile |
Email |
Action |
@foreach($buyer as $buyers)
| {{ $loop->iteration }} |
{{ $buyers->name}}
|
{{$buyers->mobile}}
|
{{$buyers->email}}
|
|
@endforeach
@endsection
@section('javascript')
@endsection