Тёмный
No video :(

Eloquent Soft Deletes: Things You May Not Know 

Laravel Daily
Подписаться 143 тыс.
Просмотров 21 тыс.
50% 1

Опубликовано:

 

21 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 99   
@ricko13
@ricko13 2 года назад
You just cover EVERYTHING about soft deletes in just 10 minutes 👏 thumbs up!
@o_lobato
@o_lobato 2 года назад
what strategies could be used to restore an old post if there is a newer with same title?
@ricko13
@ricko13 2 года назад
@@o_lobato you can also use the soft deletes as an "archive" so you can recover them later, watch the video again
@mohamedsiddig1925
@mohamedsiddig1925 2 года назад
my current project i work on require softDelete functionality, And boom you shot a video on same topic. man did you read mind?! Thanks alot. You save my day.
@nirajgautam403
@nirajgautam403 2 года назад
I already knew all this things.. but still enjoyed watching it.
@dex.cabigting
@dex.cabigting 2 года назад
In line with the unique rule, I suggest "renaming" the unique column before soft deleting it, like adding a suffix "-trashed". Then it's up to you if you will change it to "-restored" after restoring it (i think it's possible). eg: Title: "abc" -> "abc-trashed" (softdeleted) -> "abc-restored" (after restore)
@yungifez
@yungifez 2 года назад
Its crazy how simple laravel makes soft deletes
@mohammad_alhalla30
@mohammad_alhalla30 Год назад
thanks for your time , جزاك الله خيرا
@Somcoders
@Somcoders 2 года назад
Thanks Povilas. skipping unique validations may couse an error when restoring.
@yordanmilchev
@yordanmilchev 27 дней назад
Best person I know on this planet
@mhmdomer
@mhmdomer 2 года назад
Thanks Povilas, very informative as usual We can enable route model binding for soft deleted models as well, the syntax is: Route::get('/posts/{post}', [PostController::class, 'show'])->withTrashed();
@sasocvetanoski9760
@sasocvetanoski9760 Год назад
Thank you for sharing your experience 🍻
@vakylenkox
@vakylenkox 2 года назад
Short format for rule: 'title' => 'unique:posts,deleted_at,NULL',
@rs-nm7hp
@rs-nm7hp 2 года назад
Yeah .. i always implement this method not Rule object
@michaelcrash
@michaelcrash 2 года назад
my advise on cascade softdelete is to use build-in model events. "deleting" in your model method booted() to handle softdelete of child/parent models.
@bariqdharmawan4680
@bariqdharmawan4680 2 года назад
you mean using something like UserObserver and when user is deleted, perform a soft delete too to post right?
@rossco5551
@rossco5551 2 года назад
Great wrap up. Over-riding the Laravel default regarding validation would make the restoration step a lot more complex - I wonder how you would tackle checking whether a restoration is permissible (that it won't restore a model that breaks the unique constraint for example).
@abdulrehmandar8541
@abdulrehmandar8541 2 года назад
This package is useful when we have multiple relations to delete. For me I think $user->posts()->delete() will be fine. I have a question should we use soft delete on pivot table if parents table uses soft delete?
@LaravelDaily
@LaravelDaily 2 года назад
It's personal preference
@JayEdgarT
@JayEdgarT 2 года назад
Wow, what a useful video--thank you! I don't now how the 'archive' got on the request @ 1m50s. I'll have to research that. I appreciate your making this.
@ossamakhayat5390
@ossamakhayat5390 2 года назад
Clear and informative as usual. Thanks!
@charitysimon-peraboh5555
@charitysimon-peraboh5555 2 года назад
Thanks so much
@masedinet
@masedinet 2 года назад
Nice tutorial using softdelete sir,
@tastytim
@tastytim 2 года назад
thank you
@TahirBhai
@TahirBhai 2 года назад
Thanks for sharing it, I have learned new package today.
@CodePopular
@CodePopular 2 года назад
Thanks.
@RaajKhan
@RaajKhan 2 года назад
Thanks
@christian-ngabe
@christian-ngabe 8 месяцев назад
Let me say thanks so much
@alnahian2003
@alnahian2003 Год назад
3:05 Thanks a zillion for this! I tried to normally use forceDelete() and restore() method for those action according to the official docs. But it seemed it doesn't work. I tried a couple time but still had no idea why the heck the model aren't getting restored or deleted. Phew, well, so I have to find the trashed/softdeleted post at first like this: `` Post::onlyTrashed()->findOrFail($id); `` then attempt to delete it. Great!
@madrise007
@madrise007 2 года назад
when should use Soft Deletes laravel? I read that some people said that soft deletes is bad practice.
@robertomejia3124
@robertomejia3124 2 года назад
Thank you for sharing your experience & tips with us, also for a clear pronunciation for non-english-native-speakers (kind of hard to understand more of the time to me). btw, do you recommend this method with the following scenario >> let's say besides setting value to "deleted_at" field, I set one or more fields in the same table, for example : deleted_by, status... so, the question is, should excecute $post->delete(); and then $post->update( 'field' => 'value' ); or should I better create a method where I update all fields together ? something like this: $post->update([ 'status' => 'deleted', 'deleted_by' => $request->id_user, 'deleted_at' => Carbon::now() ]); also, what if I need to update other tables (cascade) but with the same idea (who deleted, status, deleted at)....should I better use transactions for this ? thanks a lot
@ekponoambrose1909
@ekponoambrose1909 2 года назад
Thank you
@KevinYobeth
@KevinYobeth 2 года назад
What about restoring soft deleted child? Is there a way to restore the child after restoring the parent itself?
@LaravelDaily
@LaravelDaily 2 года назад
Googled this: stackoverflow.com/questions/61245181/restore-soft-delete-child-in-laravel
@camilooyarzo9987
@camilooyarzo9987 2 года назад
hi i need to install jetstrap with bootstrap 4 but now by default it uses bt 5 how can i change it?
@PovilasKorop
@PovilasKorop 2 года назад
Read the documentation of Jetstrap.
@erlonpaimsodre6506
@erlonpaimsodre6506 Год назад
How could we specify the total of withTrashed() can be recovered? For example, I would like to show only five items that were retrieve withTrashed, but all the data that is not deleted, should retrieve all of them.
@frtrash766
@frtrash766 2 года назад
Hi there, teacher. Nice video! i'm having a trouble, when i'm hitting the "restore" button or the "delete forever" button, it sends me right to the url, not to the function on my controller. I don't know what i did or what is happening, so, i need help there.
@MirzaBilal1992
@MirzaBilal1992 2 года назад
Can we restore all of the deleted posts on restoring the Author as well?
@gekost79
@gekost79 2 года назад
..... and what happens if i * create a record with title "abc and softdelete it * create a new one with the same title and softdelete it * create a new one with the same title and then softdelete it ... and then i want to go and restore all three softdeleted records .... which have the same title ... which is forbidden ofcourse ... (i know i can test it, but i just wanted to make the question since you didn't clarify that) thank you and that was a great video !!
@LaravelDaily
@LaravelDaily 2 года назад
Well it's forbidden for a reason - so you can restore only one of the records, other ones would throw error.
@ShroomMusicChannel
@ShroomMusicChannel 2 года назад
I got one question, same as you show on the unique RULE part. Delete post "abc", and create another NEW post name "abc". What will happen if we restore the OLD "abc"?
@LaravelDaily
@LaravelDaily 2 года назад
Both will be active, then, you need to have a separate code to avoid it.
@jessedeboer2301
@jessedeboer2301 2 года назад
What happens when you restore the user? are the posts automatically restored to?
@alex_nita
@alex_nita 2 года назад
Great tip/tutorial. Thank you! P.S. what is the DB app used by you (in the video)
@LaravelDaily
@LaravelDaily 2 года назад
Table plus or sequel pro, I don't remember which
@alex_nita
@alex_nita 2 года назад
@@LaravelDaily thank you
@Kanexxable
@Kanexxable 2 года назад
People who try to use eloquent often say that it's a slow performance orm can you show people how to do performant queries and read writes.
@LaravelDaily
@LaravelDaily 2 года назад
Yes I'm planning a new course about Eloquent performance, will be published by the end of October, on laraveldaily.teachable.com
@Kanexxable
@Kanexxable 2 года назад
@@LaravelDaily Good I would like to see previews
@localLyricsPh
@localLyricsPh Год назад
how did you setup the editor to have keywords like "uri", "relations", "key", and "var_name" etc.
@LaravelDaily
@LaravelDaily Год назад
Phpstorm by default
@kingstalker
@kingstalker Год назад
what if you want to restore it with the same title but now the title already got created by a new record
@LaravelDaily
@LaravelDaily Год назад
Then you're screwed? :)
@Formula7Driver
@Formula7Driver 2 года назад
CascadeSoftDeletes isn't an ideal solution, because it updates relationship objects one by one. I would rather use something that uses just the foreign key for building SQL query
@rjchhetri2370
@rjchhetri2370 2 года назад
Sir to use any css framework like css, why do we need to configure laravel mix and then compile the assets. Why dont we just copy the CDN link and paste on the html template
@LaravelDaily
@LaravelDaily 2 года назад
You can use CDN, if the theme provides the CDN links
@vinsmokesanji9485
@vinsmokesanji9485 2 года назад
Thank you for your video Last time i used observables to handle soft delete relationships I want to know if there is a solution (package) can handle and archive images ?
@LaravelDaily
@LaravelDaily 2 года назад
You can do that with observers, too. Not sure about any package for specific images, maybe you can modify this one for your needs: github.com/spatie/laravel-directory-cleanup
@vinsmokesanji9485
@vinsmokesanji9485 2 года назад
@@LaravelDaily thank you for your time boss Warm regards
@julienSibille
@julienSibille 2 года назад
Because i faced troubles with softdelete and observers, I use to do it like that public function deleting(Model $model) { if($model->isForceDeleting()) { event(new ModelDeleted($model)); } else { event(new ModelSoftDeleted($model)); } } Maybe a bad habit ?
@LaravelDaily
@LaravelDaily 2 года назад
I would probably try to debug what troubles you had exactly and fix the actual issue, instead of this workaround. But it works!
@arifulsikder777
@arifulsikder777 2 года назад
I have a Parent, which is District , And District has child Division, ans aslo District has child Thana. That's mean Division ->District >Thana.. When i soft delete Division, the Thana is not deleting. Help me
@LaravelDaily
@LaravelDaily 2 года назад
Here's my article about it: blog.quickadminpanel.com/one-to-many-with-soft-deletes-deleting-parent-restrict-or-cascade/ - read section "Behavior 3"
@JovenAlbarida
@JovenAlbarida 2 года назад
many thanks for sharing this video, i just have question what if theres already existing database from client, and dev alter some columns inside migration script, does that break the records inside existing database? what is we think best practice on that kind of scenario?
@BsiennKhan
@BsiennKhan 2 года назад
Why do you think it would break anything? Databases gets updated all the time. And what you are asking is, what if I delete timestamps while the code uses Eloquent, well, give it a try and you will find out.
@LaravelDaily
@LaravelDaily 2 года назад
I'm planning to shoot a video on that exact scenario, next week.
@frank_core3193
@frank_core3193 2 года назад
is there a way where we can fetch all the soft deleted record... when i say all i mean all tables like post,users,conments...
@LaravelDaily
@LaravelDaily 2 года назад
The model structure is different for each model so how can you group them together? Query each model separately.
@frank_core3193
@frank_core3193 2 года назад
@@LaravelDaily Owkay... makes a lot of sense
@mangoknights
@mangoknights 2 года назад
Hi. By chance you offer talent/project staffing?
@LaravelDaily
@LaravelDaily 2 года назад
Nope, sorry
@bestwishes3040
@bestwishes3040 2 года назад
Sir Thank you very much for this tutorial and this is what I wanted. Sir please please make a video on the theme that you are using in PHP Storm. Your choice of theme is very good and I am unable to find the exact match with yours. Sir, please help me if possible to know me the theme name that you are using.
@LaravelDaily
@LaravelDaily 2 года назад
Material darker
@bestwishes3040
@bestwishes3040 2 года назад
@@LaravelDaily Thank you Sir
@baldomwamba
@baldomwamba 3 месяца назад
How to soft delete the pivot table ?
@LaravelDaily
@LaravelDaily 3 месяца назад
You can't in Laravel, unfortunately, at least not directly. You need to build that functionality manually if you really want it.
@marcinrobertkazmierczak
@marcinrobertkazmierczak 2 года назад
What with pivot table and soft deletes. How this things gonna work with soft deletes?
@LaravelDaily
@LaravelDaily 2 года назад
I wouldn't personally use soft deletes in a pivot table. But yes, you can do it if you create a Model for the pivot table.
@marcinrobertkazmierczak
@marcinrobertkazmierczak 2 года назад
@@LaravelDaily thank you for quick response
@marcinrobertkazmierczak
@marcinrobertkazmierczak 2 года назад
@@LaravelDaily what if I need to save data form pivot as softdeleted? Only manual manipulation with deleted_at field in pivot table?
@LaravelDaily
@LaravelDaily 2 года назад
Yes, from what I remember
@marcinrobertkazmierczak
@marcinrobertkazmierczak 2 года назад
@@LaravelDaily I found package for this on git hub and I'm testing this solution right now.
@SanjaHD
@SanjaHD 2 года назад
Does the package offer also cascade restore?
@LaravelDaily
@LaravelDaily 2 года назад
No
@Stoney_Eagle
@Stoney_Eagle 2 года назад
What's up with all the false positive errors lately in the IDE's for laravel?
@LaravelDaily
@LaravelDaily 2 года назад
M?
@Stoney_Eagle
@Stoney_Eagle 2 года назад
@@LaravelDaily Haven't you noticed that PHPstorm gives you error feedback while the code is actually valid? VSCode does the same. It's really confusing sometimes when the editor tells you you're wrong but you're not.
@LaravelDaily
@LaravelDaily 2 года назад
Oh I often ignore those, sometimes it's just some mis-caching when working with gazilion demo projects in my case. In other cases, I'm too lazy to install/configure something like IDE helper for a 5-minute demo.
@Stoney_Eagle
@Stoney_Eagle 2 года назад
@@LaravelDaily Even the core laravel functions like eloquent methods error, this has nothing to do with configuration. I'm not saying you need to do or change anything, I'm just pointing my frustrations with the error handling that is falling far behind the rapid changes in laravel. This started after laravel 7 was released. All the old packages won't give you any errors but all the new stuff does.
@LaravelDaily
@LaravelDaily 2 года назад
So your suggestion is... to not release any new features in Laravel?
@er.anilkumarthakur1493
@er.anilkumarthakur1493 2 года назад
how can i do crud for api using try-catch block in controller for the resource route using route model binding Route::resource('articles', ArticleController::class, ['except' => ['create']]); here is my controller can you help me using try catch block in controller class ArticleController extends Controller { public function index() { return Article::all(); } public function show(Article $article) { return $article; } public function store(Request $request) { $article = Article::create($request->all()); return response()->json($article, 201); } public function update(Request $request, Article $article) { $article->update($request->all()); return response()->json($article, 200); } public function delete(Article $article) { $article->delete(); return response()->json(null, 204); } }
@LaravelDaily
@LaravelDaily 2 года назад
Try to search "try catch" on my channel and you will find a lot of video examples
@GergelyCsermely
@GergelyCsermely 2 года назад
Thanks
Далее
Laravel Security: Top 7 Mistakes Developers Make
11:16
Faster Eloquent: Avoid Accessors with Foreach
9:35
Просмотров 53 тыс.
Əliyev və Putin kilsədə şam yandırıblar
00:29
Просмотров 210 тыс.
Should you Delete or Soft Delete?
6:38
Просмотров 10 тыс.
Eloquent Performance: TOP 3 Mistakes Developers Make
7:59
Laravel Junior Code Review: 12 Tips on Everything
15:30
When RESTful architecture isn't enough...
21:02
Просмотров 270 тыс.
How to use soft deletes in Laravel
10:35
Просмотров 7 тыс.
Laravel 6 Advanced - e9 - Soft Deletes
12:17
Просмотров 25 тыс.
Laravel Eloquent: Deeper Relationships with One Query
10:37
Laravel Service Providers: All You Need to Know
13:13
Laravel Validation: 12 Less-Known Tips in 13 Minutes
13:11