File: /home/mmickelson/spilicensing/resources/views/history/show.blade.php
@extends('layouts.master')
@section('content')
    <h1>History</h1>
    <div class="table-responsive">
        <table class="table table-bordered table-striped table-hover">
            <thead>
                <tr>
                    <th>ID.</th> <th>Message</th><th>ErrorMessage</th><th>activityType_id</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>{{ $history->id }}</td> <td> {{ $history->message }} </td><td> {{ $history->errorMessage }} </td><td> {{ $history->activityType_id }} </td>
                </tr>
            </tbody>    
        </table>
    </div>
@endsection