@extends('layouts.app' ) @section('title') Activity Log @stop @section('breadcrumb') @stop @section('content')

All Recent Activities

@foreach($activity as $a) @if($a->user) @else @endif @endforeach
# Action Description User Time
{{$count++}} {{$a->log_name}} {{$a->description}}{{$a->user->name}}{{$a->created_at}}
{{-- {{$activity->links()}} --}} {{ $activity->appends(request()->input())->links() }}
@stop @section('js') @stop