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

@push('script') @endpush @endsection