@extends('layouts.dashboard.adminapp')
@section('title', 'Customer/Vendor List')
@section('styles')
@endsection
@section('content')
Customer & Vendor List
day,
00
month
0000
| ID |
Company Name |
Email |
Contact Number |
Status |
Actions |
@foreach($customers as $customer)
| {{ $customer->id }} |
{{ $customer->company }} |
{{ $customer->email }} |
{{ $customer->mobile }} |
@if($customer->status == 1)
Active
@else
Inactive
@endif
|
View
Edit
|
@endforeach
@endsection
@section('scripts')
@endsection