@extends('tenant.settings.general.all-general-settings') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.general_settings') => route('tenant.settings.general.show-page', ['type' => 'company-information']), __('breadcrumb.user_movements') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'settings.general.actions-log']) @endsection @section('style') @endsection @section('settings-content')
@php $selected_emoloyees_ids = request('employees_ids')?? []; @endphp
@php $selected_modules = request('modules', []); @endphp
@php $selected_sections = request('sections', []); @endphp
@php $selected_functions = request('functions', []); @endphp

@lang('settings/general/actions-log.employees_actions')

@php $table_options = [ 'lang' => ['noAvailableData' => __('noAvailableData.no_data')], ]; @endphp @forelse ($actions as $action) @if ($action->function_code === 'delete') @else @endif @empty @endforelse
# @lang('settings/general/actions-log.employee') @lang('settings/general/actions-log.transaction_') @lang('settings/general/actions-log.unit_') @lang('settings/general/actions-log.sections_') @lang('settings/general/actions-log.reference') @lang('settings/general/actions-log.date')
{{ $loop->iteration }} {{ $action->employee->user_name }} {{ $action->function->name }} {{ $action->section->name }} {{ $action->module->name }} {{ $action->created_at->format('Y-m-d') }} {{ $action->created_at->format('h:i A') }}
@lang('settings/general/actions-log.there_are_no_transactions_yet')
{!! $actions->links() !!}
@endsection @push('script') {{-- add the tom-select library to delete the multiple select options --}} @endpush