@extends('inventory.layout')
@section('title', 'Customers')
@section('content')
@push('head')
@endpush
{{ __('Customer Name')}} |
{{ __('Action')}} |
@foreach($customerdata as $customer)
{{ isset($customer->name) ? $customer->name :'' }} |
|
@endforeach
@push('script')
@endpush
@endsection