@extends('layouts.customer') @section('content-customer')
| {{ trans('customer.name') }} | {{ $customer->name }} |
| {{ trans('contact.email') }} | {{ $customer->email }} |
| {{ trans('contact.phone') }} | {{ $customer->phone }} |
| {{ trans('customer.pic') }} | {{ $customer->pic }} |
| {{ trans('address.address') }} | {{ $customer->address }} |
| {{ trans('app.status') }} | {{ $customer->is_active }} |
| {{ trans('app.notes') }} | {!! nl2br($customer->notes) !!} |