@extends('layouts.app') @section('content')
Customers
{{-- @if (session('status'))--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- @endif--}}
@if(sizeof($customers) !== 0) @foreach($customers as $customer) @endforeach
Company Name Internal Name Shipping Address Billing Address Phone View
{{$customer->company_name}} {{$customer->internal_name}} {{$customer->shipping_address}} {{$customer->billing_address}} {{$customer->phone}}
@else() No customer data. @endif
@include('customers.create-modal') @include('customers.delete-all-modal') @endsection