@extends('layouts.admin.app') @section('title') All Customers @stop @section('main')
@foreach($customers as $customer) @endforeach
ID Customer Name Company Email Phone Shipping Address Billing Address
{{$customer->customer_id}} {{$customer->customer}} {{$customer->company}} {{$customer->email}} {{$customer->phone}} {{$customer->ship_address}}, {{$customer->ship_city}}, {{$customer->ship_state}} {{$customer->ship_zip}} {{$customer->bill_address}}, {{$customer->bill_city}}, {{$customer->bill_state}} {{$customer->bill_zip}}
@stop @section('footer') @stop