How to Spatie Activity Log Customize?
how to Spatie Activity Log customize I want show all recorde for admin just and another user can show all records logs without admin's records
example select all records from table Activity_Log if User is admin but it is'nt admin show all records without admin's record
where() to filter your query:where()->where('causer_type',User::class)
->where('causer_id', $admin->id)