@extends('layouts.app') @section('title', trans('customer.show')) @section('content')

{!! link_to_route('customers.edit', trans('customer.edit'), [$customer->id], ['id' => 'edit-customer-' . $customer->id, 'class' => 'btn btn-warning']) !!} {!! link_to_route('customers.index', trans('customer.back_to_index'), [], ['class' => 'btn btn-default']) !!}
{{ $customer->name }} {{ trans('customer.show') }}

{{ trans('customer.show') }}

{{ 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) !!}
@endsection