@extends('layouts.nav') @section('title') Customers @endsection @section('content')

System Customers

Add Customers
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

@foreach ($customers as $customer) @endforeach
Entry Date Customer Code Name Contact Person Contact 1 Contact 2 Email Address Action
Entry Date Customer Code Name Contact Person Contact 1 Contact 2 Email Address Action
{{ $customer->EntryDate }} {{ $customer->CustomeCode }} {{ $customer->Name }} {{ $customer->ContactPerson }} {{ $customer->Contact1 }} {{ $customer->Contact2 }} {{ $customer->Email }} {{ $customer->Address }}
@endsection