@extends('layouts.admin-layout') @section('title', 'All Vendors ') @section('content')

Vendor Section

@foreach ($get_users as $user) @endforeach
S.N. Vendor Name Vendor Email Vendor Address
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }} {{ $user->address }}
@endsection @section('script') @endsection