@extends('layout') @section('title', 'Contact Details') @section('content')

Contact Details for {{ $contact->name }} at {{ $contact->company->name }}

@if(Session::has('message')) @endif

Basic Details

Contact Name
{{ $contact->name }}
E-Mail Address
{{ $contact->email }}
Telephone
{{ $contact->phone }}
Company
{{ $contact->company->name }}
Account Code
{{ $contact->company->accountcode }}

Extra Details

ID
{{ $contact->id }}
Created
{{ $contact->created_at }}
Updated
{{ $contact->updated_at }}

Functions

Go to contacts
@stop