Laravel Auditing Package: Track all Your Model Changes

  Рет қаралды 22,408

Laravel Daily

Laravel Daily

6 жыл бұрын

Quick demo of a cool package I've found recently.
laravel-auditing.com/
- - -
Want more Laravel advice?
- Visit our website: laraveldaily.com
- Our 50+ Laravel tips in a FREE e-book: bit.ly/laravel-tips
- Support us by trying our Laravel AdminPanel Generator: quickadminpanel.com
- Follow us on Twitter: / dailylaravel
- Subscribe to Thursday's newsletter: laraveldaily.com/weekly-larave...

Пікірлер: 39
@TristanBailey
@TristanBailey 6 жыл бұрын
Nice demo, I have this package on the list to try but nice to see it demoed. It gave me the idea that I could use it to show changes to the User objects when any one edits it, for audit for GDPR, that is on my list.
@VitorSpencer
@VitorSpencer 6 жыл бұрын
Thanks for showing us this package! Can't believe it makes it so simple to track model changes :)
@Anteriovieira
@Anteriovieira 6 жыл бұрын
Awesome, thanks for introducing the laravel-auditing package to the community. ;)
@cwazybrad
@cwazybrad 4 жыл бұрын
Very cool I will look at implementing this into my project.
@delightfirst7850
@delightfirst7850 6 жыл бұрын
Hy i am a front-end and laravel developer ..i like you and your tutorial
@niccubagonoc9907
@niccubagonoc9907 5 жыл бұрын
Great demo. Thanks!
@chimithinley2015
@chimithinley2015 3 жыл бұрын
I found that both the Laravel activity log and Laravel auditing are quite similar so, can you tell me the difference between them.
@SanderCokart
@SanderCokart 2 жыл бұрын
is there a way to put the tag 'email_changed' only if the email was changed for example?
@dmdk8301
@dmdk8301 3 жыл бұрын
Brilliant. Sure will implement it
@quickmentoritsolution
@quickmentoritsolution Жыл бұрын
Thanks a lot for this, but there is some problem for me when I insert a Unicode characters so it does not converted to Unicode in MySQL database
@adarshchacko6137
@adarshchacko6137 9 ай бұрын
I wonder if it will work for query builder queries 🤔
@saber.tabatabaee
@saber.tabatabaee 4 жыл бұрын
Great. can you describe how can we send firebase notification for tracked product users when price changed? ;)
@CloudZeroXYZ
@CloudZeroXYZ 3 жыл бұрын
Thanks dude you save me day :D
@3535romulo
@3535romulo 5 жыл бұрын
How i export this change? yaml file
@acardielf
@acardielf 4 жыл бұрын
What component for roles and permissions do you use in the demo? which admin dashboard template do you use? great demo. thanks
@PovilasKorop
@PovilasKorop 4 жыл бұрын
I'm using our own created QuickAdminPanel - see www.quickadminpanel.com
@shaguftaambreen6502
@shaguftaambreen6502 Жыл бұрын
One issue how we paginate server side ?Because this oackage is saving json like json of whole form which include 50fields but i want to paginate 20 records per page table ...server side paginatio?? this is issue with this package
@satyaprakashtiwari3189
@satyaprakashtiwari3189 5 жыл бұрын
It was a nice video, but I have a question. Does it automatically store the audits in file and delete old entries from database if threshold is reached?
@LaravelDaily
@LaravelDaily 5 жыл бұрын
Good question, not sure, you need to try or look into their documentation.
@broboredo
@broboredo 5 жыл бұрын
Hey dude, which chrome extension do you use to update form? thx
@broboredo
@broboredo 5 жыл бұрын
@@PovilasKorop thx!! =D
@oguzhanpalacoglu5937
@oguzhanpalacoglu5937 2 жыл бұрын
How can i reach all audits not just particular one. I read documentation and try many ways. But I didn't succeed
@younusfarveaz8983
@younusfarveaz8983 6 жыл бұрын
Good video
@takundaalban
@takundaalban 2 жыл бұрын
Great tool, down side is there is no way to directly grab all audits at once, only model by model pull
@cwazybrad
@cwazybrad 4 жыл бұрын
Thanks again for showing how this works. I've managed to implement this into my project now - just one quick question - do I need to create multiple article.php (@lang('article.updated.metadata') files for different tables and sections? I assume I just create accounts.updated.metadata invoices.updated.metadata contacts.updated.metadata etc? Then reference them in the blade template?
@PovilasKorop
@PovilasKorop 4 жыл бұрын
It depends a lot on how many different tables and sections you have. You can structure translation files however you want, creating array of arrays inside of it. I personally like to have resources/lang/en/global.php, and inside the array of, for example, ['article' => ['updated' => ['metadata' => 'Meta data']], ['invoices' => ['updated' => ['metadata' => 'Invoices meta data']]] Or you can use the same word, if it's not different, like @lang('global.metadata') everywhere.
@cwazybrad
@cwazybrad 4 жыл бұрын
@@PovilasKorop Got it thank you! I will give that a go.
@hendisantika
@hendisantika 3 жыл бұрын
Nice demo. What if We want to add email & username into activity log? How Can We do it? Thanks
@adebajooluwaseyi2124
@adebajooluwaseyi2124 3 жыл бұрын
you already have the user, use that to get email and username
@vanoan6277
@vanoan6277 5 жыл бұрын
How to save user_id, in my case: everything save then user_type and user_id not save and was null value
@gundam3x
@gundam3x 5 жыл бұрын
you can try this www.laravel-auditing.com/docs/9.0/audit-transformation
@majidshafik5088
@majidshafik5088 Жыл бұрын
Thank u alot but I have question please .. Does Auditing Package work with Livewire ?
@LaravelDaily
@LaravelDaily Жыл бұрын
I haven't tried but should work
2 жыл бұрын
Website is dead.
@maykeltrejo2964
@maykeltrejo2964 5 жыл бұрын
what is your laravel version?
@PovilasKorop
@PovilasKorop 5 жыл бұрын
Video was filmed in June of 2018, so it was probably 5.6 version.
@kincortezao2024
@kincortezao2024 3 жыл бұрын
Error when remove MASS DESTROY, audit log save CREATED or UPDATED, not DELETED
@mp250986
@mp250986 5 жыл бұрын
laravel auditing with relationships, how could it be done?
@PovilasKorop
@PovilasKorop 5 жыл бұрын
What do you mean "with relationships"? Need more details on how exactly you want it to work. But anyway it's custom code, of course, this package doesn't do anything with relationships, from what I know.
1 Laravel Activity Log By Team Spatie - Intro and Setup
10:42
10 Less-Known Laravel Packages
6:12
Laravel Daily
Рет қаралды 17 М.
Secret Experiment Toothpaste Pt.4 😱 #shorts
00:35
Mr DegrEE
Рет қаралды 35 МЛН
Double Stacked Pizza @Lionfield @ChefRush
00:33
albert_cancook
Рет қаралды 110 МЛН
World’s Largest Jello Pool
01:00
Mark Rober
Рет қаралды 99 МЛН
Gym belt !! 😂😂  @kauermtt
00:10
Tibo InShape
Рет қаралды 17 МЛН
Laravel Roles and Permissions: All CORE Things You Need To Know
16:32
Laravel Daily
Рет қаралды 217 М.
Eloquent Observers or Events Listeners? Which is Better?
8:24
Laravel Daily
Рет қаралды 60 М.
4 Packages You Need in ANY Laravel Project
8:14
Laravel Daily
Рет қаралды 61 М.
Exceptions in Laravel: Why/How to Use and Create Your Own
12:18
Laravel Daily
Рет қаралды 87 М.
5 tips for supercharged Laravel Eloquent queries
16:29
Andrew Schmelyun
Рет қаралды 67 М.
The Story of Next.js
12:13
uidotdev
Рет қаралды 559 М.
What if my Intel CPU explodes??
14:20
Paul's Hardware
Рет қаралды 58 М.
Junior Code Review: Laravel Routes, Middleware, Validation and more
19:57
Laravel Controller Code: Move to Model, Service, Action or Job?
12:51
Laravel Daily
Рет қаралды 105 М.
Laravel Security: Top 7 Mistakes Developers Make
11:16
Laravel Daily
Рет қаралды 82 М.
Gym lover..#trollface #short #shortsfeed
0:21
DS SIPUN OFFICIAL
Рет қаралды 5 МЛН
A little girl was shy at her first ballet lesson #shorts
0:35
Fabiosa Animated
Рет қаралды 15 МЛН
Forming of goal foam || A2Z SKLLS
1:00
A2Z SKILLS
Рет қаралды 31 МЛН
王子居然在家这样 #艾莎
0:38
落魄的王子
Рет қаралды 8 МЛН
Забота Казахов🇰🇿
0:45
QAZAQ PEOPLE
Рет қаралды 236 М.