@extends('layouts.app') @section('title', 'Clients') @section('content')
@foreach($customers as $customer) @endforeach
Name Address Email Phone Actions
{{ $customer->company_name }} @if($customer->type=='customer') Client @else Supplier @endif
{{ $customer->address_1 }} {{ $customer->email }} {{ $customer->phone }} Actions
@endsection @section('js') @endsection