@extends('layouts.admin.master')
@section('title', 'Customer')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($message = Session::get('success'))
@endif
# |
Code |
Name |
Phone |
Email |
Credit Limit |
Action |
@forelse ($customers as $customer)
{{$loop->iteration}} |
{{ $customer->accountcode }} |
{{ $customer->name }} |
{{ $customer->phone }} |
{{ $customer->email }} |
{{ $customer->creditlimit }} |
|
@empty
@endforelse
@endsection