@extends('layouts.frontendDashboard.master') @section('title', 'SHOW ACTIVITY LOGS') @section('body-start')
@endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('fail'))
{{ $message }}
@endif @if ($errors->any())
Please check the form below for errors
@endif
@if (!empty($activity)) @foreach ($activity as $key => $item) @endforeach @endif
# {{ __('Activity') }} {{ __('Activity Time') }} {{ __('Performed By') }}
{{ $loop->iteration }} {{ !empty($item->description) ? $item->description : '' }} {{ !empty($item->created_at) ? date('d-m-Y h:i:s a', strtotime($item->created_at)) : '' }} {{ !empty($item->log_name) ? $item->log_name : '' }}
@endsection @push('scripts') @endpush