@extends('layouts.app') @section('page-title', 'Customer Details') @section('content')
Name: {{ $customer->name }}
@if($customer->email)Email: {{ $customer->email }}
@endif @if($customer->phone)Phone: {{ $customer->phone }}
@endif @if($customer->address)Address: {{ $customer->address }}
@endif