Claude Code tip for you!💡 Use claude -p to run Claude Code in non-interactive mode. Perfect for making Claude part of your bash scripts: Git hooks, CI/CD pipelines, etc. Pre-commit example: if en.json changes, Claude translates what's missing to es.json and stages it.
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
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!
There's not just one way to seed your Laravel apps. Check out our latest article to learn: ✅ How to import thousands of records from CSV ✅ How to use AI to seed realistic data ✅ How to create interactive seeders ...and more! tighten.com/insights/10-...
10 Efficient (and Fun) Ways to Seed Your Database
Seeders allow us to quickly fill our database with records to test our application. Let's say that you need a couple of users to test your authentication system—you could create them manually using yo...
tighten.com
My new article is live! Check it out if you want to make search awesome in your Laravel app 😉
In today's article, discover 5 tips to build better full-text searches: ✅ Sort records ✅ Use filters effectively ✅ Tweak typo tolerance ✅ Access the raw Typesense response ✅ Use facets for better filtering Click the link below 👇 tighten.com/insights/fiv...
🚀 Filament helps you create a customizable admin panel in minutes. Join @nicodevs.bsky.social to learn how to: ✨ Install Filament in Laravel ⚡ Generate admin panels from Models 💅 Use rich text editors, tag inputs, & uploaders 🔍 Add filters & actions tighten.com/insights/fil...
Filament Crash-Course: Create a Customizable Admin Panel in Minutes
In most applications, administrators need a way to manage data. Whether it's a blog's articles and comments, a store's products and orders, or a theater's events and tickets, admins need a place to li...
tighten.com