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