mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 13:24:03 +00:00
505 B
505 B
| title | tweet_id | thread_slug | author_username | images | created_at | slug | |
|---|---|---|---|---|---|---|---|
| Avoid queries in Blade when possible | 1272826450559803392 | laravel-clean-code-tactics | samuelstancl |
|
2021-04-06T16:07:36+00:00 | avoid-queries-in-blade-when-possible |
Sometimes you may want to execute DB queries in blade. There are some ok use cases for this, such as in layout files.
But if it's a view returned by a controller, pass the data in the view data instead.