@extends('backend.layouts.app')
@section('backend_title', 'Admin Brand List')
@section('backend_content')
| Company Name |
Owner Name |
Mobile Number |
Address |
Status |
Action |
@forelse ($supplierList as $item)
|
|
{{ $item->owner_name }}
|
{{ $item->phone_number }}
|
{{ $item->address }}
|
@if ($item->status == 1)
Active
@else
Inactive
@endif
|
|
@empty
| Data Not Found!! |
@endforelse
| Name |
Status |
Action |
@endsection