File: /home/mmickelson/spilicensing/resources/views/purchaser/show.blade.php
@extends('layouts.master')
@section('content')
<h1>Purchaser</h1>
<div class="table-responsive">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>ID.</th> <th>ContactName</th><th>ContactEmail</th><th>ContactPhone</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ $purchaser->id }}</td> <td> {{ $purchaser->contactName }} </td><td> {{ $purchaser->contactEmail }} </td><td> {{ $purchaser->contactPhone }} </td>
</tr>
</tbody>
</table>
</div>
@endsection