@extends('layouts.main') @section('content')
@if($actions->isEmpty())
No actions(s) found.
@else @foreach($actions as $action) @endforeach
Action Action Done By Date/Time Done Reference Incoming Document
{{ $action->comment->comm_text }} {{ $action->user->u_fname }} {{ $action->user->u_lname }} {{ date('F d, Y h:i A', strtotime($action->created_at)) }} {{ $action->document->d_subject }}
@if($actions->render())
{!! $actions->render() !!}
@endif @endif
@stop