@extends('admin.dashboard') @section('content') Admin Logs S.No Description Created Date Status @if(count($logs) > 0) @foreach($logs as $key => $val) {{ $counter++ }} {{ $data."'s" }} {{ $val->description }} {{ $val->user->email }} {{ CommonHelper::date_format($val->created_at) }} {{ CommonHelper::getUserStatusLabel($val->status) }} @endforeach @else No record found ! @endif @endsection @section('script') @endsection