@extends('admin.layout.master') @section('title','User Activity') @section('custom_style') @endsection @section ('content')

User Activity List

@include('inventory.global.report_print_excel_button')
@csrf
{{--
--}}
{{--
--}}

@if (count($logs))
User Name: {{ $logs->first()->user->name }}
@endif
{{--
{{ $log->user->name.' '.(date('d-m-Y h:i:s A', strtotime($log->created_at))) }}
--}} @forelse ($logs as $log) @empty @endforelse
Menu Date Action Store
{{ ucfirst(str_replace('.', ' ', $log->permission->group_name)) }} ({{ $log->action }}) {{ date('d-m-Y h:i:s A', strtotime($log->created_at)) }} {{ $log->posting_type }} {{ $log->warehouse->name_eng }}
@include('v2.admin.global.empty_modal', [ 'modal_id'=> 'log_details_id', 'modal_body_id'=> 'log_details', 'modal_title'=> 'Log Request', 'mdl_size'=> 'modal-xl' ]) @endsection @section('script') @endsection