@extends('admin.layout') @section('title') User Actions @endsection @section('content')

Users actions

@if(session()->has('success'))
@endif @if(session()->has('errorMessage'))
@endif
@foreach($actions as $key => $action) @endforeach
# Action User Date
{{ $key + 1 }} {{ $action->action }} {{ $action->user->first_name . ' ' . $action->user->last_name }} {{ $action->created_at }}
# Action User Date
@endsection @section('pageScripts') @endsection