@extends('layouts.dashboard.adminapp') @section('title', 'Customer/Vendor List') @section('styles') @endsection @section('content')
Customer & Vendor List
day, 00 month 0000

Add New Customer
Customer & Vendor List
@foreach($customers as $customer) @endforeach
ID Company Name Email Contact Number Status Actions
{{ $customer->id }} {{ $customer->company }} {{ $customer->email }} {{ $customer->mobile }} @if($customer->status == 1) Active @else Inactive @endif View Edit
@endsection @section('scripts') @endsection