Nico Devs
banner
nicodevs.bsky.social
Nico Devs
@nicodevs.bsky.social
Senior Software Engineer | Vue + Nuxt + Laravel + Tailwind | D&D player in spare time | http://nicodevs.com
Clean up your Vue templates with this tip 💡

If the variable you're passing to a prop matches its name:

:size="size"

... you can use the shorthand!

:size
May 5, 2025 at 2:08 PM
Hey! Laravel tip for you 💡

SQLite CLI has a CSV mode to import CSVs directly into a table:

sqlite> .mode csv
sqlite> .import products.csv products

Use Laravel's Process to run this command in a seeder and quickly populate any table!
March 14, 2025 at 6:38 PM