What extensions are you using for autocompletion and database preview
@codewithdary Жыл бұрын
Here are all the extensions I used in this course: kzbin.info/www/bejne/gXK4qZqLq6hoZ5Y
@llBestBoyll2 жыл бұрын
Nice 🙏🏼🔥
@codewithdary2 жыл бұрын
Thanks 🔥
@amanprasadoo72 жыл бұрын
In migrations chapter you should also teach about rollback particular table and updating migrations also. It's very helpful as dev.
@codewithdary2 жыл бұрын
That's definitely a topic but there are too many that I simply can't cover in one video :( Thank you anyways!
@09BoLLo06 Жыл бұрын
whats the benefit of using method chaining instead of writing conventional queries using the DB:: facade? Is it somehow more secure/faster, or is method chaining just a wrapper for "easier" usage?
@codewithdary Жыл бұрын
Depends on the amount of data you are working with. If you have huge amount of data, using the DB Facade is a lot faster than Eloquent.. From performance tests, inserting 1000 rows in a simple table takes Eloquent 1.2 seconds whereas the DB facade takes only 800 milliseconds.
@radyawser49632 жыл бұрын
Wait to see Eloquent function🙂
@codewithdary2 жыл бұрын
Will definitely come ;)
@sajadsalamian69532 жыл бұрын
what is your database extension?
@codewithdary2 жыл бұрын
Its called Database Client.
@eldoradokolade2 жыл бұрын
Thank you boss 😊❤️
@eldoradokolade2 жыл бұрын
This is a really detailed explanation of the Query builders. Thank you so much 🥺✨❤️
@radybmcs65162 жыл бұрын
Could you do more on Eloquent function please
@codewithdary2 жыл бұрын
Will be coming in this course :)
@VKMilling Жыл бұрын
1 issue I did notice here is that the timestamp fields for created_at and updated_at were not populated when doing the insert query.
@codewithdary Жыл бұрын
The insert() method in Laravel does not add the created_at and updated_at fields by default, while the update() method does. This is because these fields are typically used for tracking changes to a record, and it makes sense to add them when creating a new record.