#laravel 搜尋結果

#Laravel and #PHP Tip Did you know… you can import multiple classes from a single namespace like this👇 Way cleaner, right? 😁

laravelbackpack's tweet image. #Laravel and #PHP Tip

Did you know… you can import multiple classes from a single namespace like this👇

Way cleaner, right? 😁

#Laravel Tip Did you know... You can fetch a single column directly with value() — simpler & faster than first().

laravelbackpack's tweet image. #Laravel Tip

Did you know... You can fetch a single column directly with value() — simpler & faster than first().

Huge shoutout to @filamentphp 🎉 Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜 At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

One thing I’ve learned as a developer: Don’t use the “popular” tool, use the right one. My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner. Growth is realizing efficiency > hype. #WebDev #PHP #Laravel

joydev_1's tweet image. One thing I’ve learned as a developer:
Don’t use the “popular” tool, use the right one.
My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner.
Growth is realizing efficiency > hype.
#WebDev #PHP #Laravel

#Laravel Tip If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

laravelbackpack's tweet image. #Laravel Tip

If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

#Laravel #PHP Do you map or loop? 👇 Functional elegance or just fancy syntax? What do you think👇

laravelbackpack's tweet image. #Laravel #PHP

Do you map or loop? 👇

Functional elegance or just fancy syntax? What do you think👇

PHP is a fun and awesome language BTW. #PHP #Laravel

CodeSushil's tweet image. PHP is a fun and awesome language BTW.

#PHP #Laravel

Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740! Finally met the legend behind Laravel Idea — @Adelf32 👏 Great vibes, great devs. Can’t wait for the next one! (Also got a little gift 🎁)

sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)
sky_0xs's tweet image. Had an awesome time at the #Laravel meetup hosted by @fahadkhan1740!
Finally met the legend behind Laravel Idea — @Adelf32  👏

Great vibes, great devs. Can’t wait for the next one!
(Also got a little gift 🎁)

Saturday morning project: Built a complete job application form with FilaForms - a plugin for FilamentPHP. Time spent: 1 minute Coffee consumed: Still on first cup #Laravel #Filament #FormBuilder #PublicForms


#Laravel #PHP Do you use compact() when passing data to views....? Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use compact() when passing data to views....?

Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇

#Laravel #PHP Do you use arrow functions everywhere? 👇 Cleaner or harder to read? 👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use arrow functions everywhere? 👇

Cleaner or harder to read? 👇

#Laravel Tip Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

laravelbackpack's tweet image. #Laravel Tip
Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

#Laravel Tip Did you know... Laravel understands your relations and lets you write much cleaner code👇

laravelbackpack's tweet image. #Laravel Tip

Did you know... Laravel understands your relations and lets you write much cleaner code👇

For all the #Laravel devs out there using Windows 💻 composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

JaiveerChavda's tweet image. For all the #Laravel devs out there using Windows 💻

composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

#Laravel #PHP Ever replaced a bunch of isset() checks with optional chaining? Smart move or risky readability hit? 👇

laravelbackpack's tweet image. #Laravel #PHP

Ever replaced a bunch of isset() checks with optional chaining?

Smart move or risky readability hit? 👇

4️⃣ Clean Code Series: Functions📒🧑💻 ☑️ Functions should only be one level of abstraction 💡 When you have more than one level of abstraction your function is usually doing too much. Splitting up functions leads to reusability and easier testing. 🐘#PHP #Laravel #Symfony

rajkbnp's tweet image. 4️⃣ Clean Code Series: Functions📒🧑💻

☑️ Functions should only be one level of abstraction

💡 When you have more than one level of abstraction your function is usually doing too much. Splitting up functions leads to reusability and easier testing.

🐘#PHP #Laravel #Symfony

#Laravel #PHP Do you use ?? or stick with isset() ? Clean shortcut or confusing syntax? What do you think...👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use ?? or stick with isset() ?

Clean shortcut or confusing syntax?  What do you think...👇

Descubrí cómo #WordPress y #Laravel pueden revolucionar tu proyecto web 🚀. No se trata solo de código; es sobre crear experiencias únicas para tus usuarios. ¿Quieres saber más? ¡Mantente sintonizado! #DesarrolloWeb #PHP #InnovaciónTech


Fix: split it into two fields, start_covered_date and end_covered_date (both as date types). You keep the flexibility for calculations and clear structure in your database. #Laravel #WebDevelopment #Backend #PHP


Fix: split it into two fields, start_covered_date and end_covered_date (both as date types). You keep the flexibility for calculations and clear structure in your database. #Laravel #WebDevelopment #Backend #PHP


I just dropped a new Laravel package, No more typing git add . git commit -m "..." git push github.com/Aarondio/larav… #Laravel #PHP #Git #OpenSource #DevTools #Productivity

Aarondioo's tweet image. I just dropped a new Laravel package, No more typing
git add .
git commit -m "..."
git push
github.com/Aarondio/larav…
#Laravel #PHP #Git #OpenSource #DevTools #Productivity

6️⃣ Clean Code Series: Functions📒🧑💻 ☑️ Avoid Side Effects 💡A function produces a side effect if it does anything other than take a value in and return another value or values. 🐘 #PHP #Laravel #Symfony

rajkbnp's tweet image. 6️⃣ Clean Code Series: Functions📒🧑💻

☑️ Avoid Side Effects

💡A function produces a side effect if it does anything other than take a value in and return another value or values.

🐘 #PHP #Laravel #Symfony

The Range Slider component is coming. Fully reactive, customizable, and built for precision. If all goes well, it drops tomorrow. see sheafui.dev for more than 40+ ones #SheafUI #Laravel #AlpineJS #Livewire #TailwindCSS

charrafimed's tweet image. The Range Slider component is coming.
Fully reactive, customizable, and built for precision.
If all goes well, it drops tomorrow.
see sheafui.dev for more than 40+ ones
#SheafUI #Laravel #AlpineJS #Livewire #TailwindCSS

PHP 8.5 Alpha + Laravel = 🔥 ✅ Pipe operator ✅ Native array helpers ✅ Faster response times ✅ Better DX Benchmarks + gotchas + live examples 👇 #Laravel #PHP #DX #WebDev #PHP85 #Benchmarking medium.com/p/php-8-5-alph…


Day 1 We’re building Telvera, a Laravel script for renting virtual numbers and receiving SMS codes. Built for developers and marketers. #Laravel #PHPScript #SMSAPI @codecanyon

danadelola's tweet image. Day 1
We’re building Telvera, a Laravel script for renting virtual numbers and receiving SMS codes.
Built for developers and marketers.
#Laravel #PHPScript #SMSAPI @codecanyon

#Laravel #database error "SQLSTATE[HY000] [1045] Access denied for user (using password: YES)". Fix: 1. If the passwd has '#' character in .env file, it could get dropped. As '#' is used for commenting. So use double quotes "". 2. php artisan cache:clear php artisan config:cache

usamurai's tweet image. #Laravel #database error "SQLSTATE[HY000] [1045] Access denied for user (using password: YES)".
Fix:
1. If the passwd has '#' character in .env file, it could get dropped. As '#' is used for commenting. So use double quotes "".
2. php artisan cache:clear
php artisan config:cache

飲食店予約アプリ 店舗責任者向けの「通知一覧ページ」実装 ・通知カテゴリ:予約 / レビュー / システム ・ステータス:未読・既読 ・一括操作:既読・アーカイブ・削除 ・未読数はベルアイコンにリアルタイム反映 明日は店舗詳細情報の修正画面を実装します。 #Laravel #PHP #個人開発

N_kAWA0817's tweet image. 飲食店予約アプリ
店舗責任者向けの「通知一覧ページ」実装

・通知カテゴリ:予約 / レビュー / システム
・ステータス:未読・既読
・一括操作:既読・アーカイブ・削除
・未読数はベルアイコンにリアルタイム反映

明日は店舗詳細情報の修正画面を実装します。

#Laravel #PHP #個人開発

Today built #laravel backend #API for my next financial planner project, frontend in React.js. Login & register done (#backend). Styling not done yet. But I’m frustrated why does Tailwind #CSS always cause installation issues? Anyone else face this?


#DailyResource Article by Joel Clermont A strategy for testing permissions logic Read now at bestoflaravel.com/go/3477 #php #laravel #webdev #javascript #tech #resources #developers

BestOfLaravel's tweet image. #DailyResource

Article by Joel Clermont
A strategy for testing permissions logic

Read now at
bestoflaravel.com/go/3477

#php #laravel #webdev #javascript #tech #resources #developers

🎥 LaraConnect : enfin une plateforme pensée POUR les devs Laravel ! Je vous montre comment elle simplifie la recherche de missions (freelances) et de talents (entreprises) 💼 Démo rapide + inscription gratuite 👇 youtu.be/_30MnB1W36E #Laravel #DevCommunity

LaravelJutsu's tweet card. LaraConnect : La plateforme qui connecte freelances Laravel et...

youtube.com

YouTube

LaraConnect : La plateforme qui connecte freelances Laravel et...


One thing I’ve learned as a developer: Don’t use the “popular” tool, use the right one. My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner. Growth is realizing efficiency > hype. #WebDev #PHP #Laravel

joydev_1's tweet image. One thing I’ve learned as a developer:
Don’t use the “popular” tool, use the right one.
My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner.
Growth is realizing efficiency > hype.
#WebDev #PHP #Laravel

Can’t wait to be in Verona on Nov 20 for Laravel Day 🇮🇹 I’ll take you on a journey through the Laravel source code Let’s explore what’s inside the framework we all love! ❤️ 👉 laravelday.it/talk/dentro-la… #Laravel #LaravelDay #PHP


🚀 100+ Laravel Tips, Tricks & Shortcuts You’ll Actually Use I’ve compiled over 105 real-world Laravel tips that make you code faster, debug smarter, and ship better. Here are 10 free ones 👇 #Laravel #PHP #WebDev #CodeNewbie #BuildInPublic

apnahive's tweet image. 🚀 100+ Laravel Tips, Tricks & Shortcuts You’ll Actually Use

I’ve compiled over 105 real-world Laravel tips that make you code faster, debug smarter, and ship better.

Here are 10 free ones 👇
#Laravel #PHP #WebDev #CodeNewbie #BuildInPublic

🚀Descubrí un truco en #Laravel que reduce a la mitad el tiempo de desarrollo de APIs. ¿Lo mejor? Es tan simple que te preguntarás por qué no lo usaste antes. Implementarlo me permitió enfocarme más en la creatividad que en el código. ¿Quieres saber cómo? 🧵#PHP #WebDevelopment


Laravel just got cloud-native Spin up Hetzner servers, manage DNS, and automate infra — all with elegant PHP. ✅ Full API coverage ✅ Laravel-native syntax ✅ One line to deploy #Laravel #PHP #Hetzner #CloudDev #DevOps #DX #WebDev #InfrastructureAsCode medium.com/p/laravel-meet…


#Laravel Tip Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

laravelbackpack's tweet image. #Laravel Tip
Load data faster when the targeted value is an integer. Use 𝘄𝗵𝗲𝗿𝗲𝗜𝗻𝘁𝗲𝗴𝗲𝗿𝗜𝗻𝗥𝗮𝘄() instead of the 𝘄𝗵𝗲𝗿𝗲𝗜𝗻() method to load data faster when the targeted value is an integer.

#Laravel #PHP Do you map or loop? 👇 Functional elegance or just fancy syntax? What do you think👇

laravelbackpack's tweet image. #Laravel #PHP

Do you map or loop? 👇

Functional elegance or just fancy syntax? What do you think👇

#Laravel Tip If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

laravelbackpack's tweet image. #Laravel Tip

If you want to automatically delete old entries, you can use the Prunable Trait. No need to write custom commands:

#Laravel #PHP Do you use arrow functions everywhere? 👇 Cleaner or harder to read? 👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use arrow functions everywhere? 👇

Cleaner or harder to read? 👇

#Laravel and #PHP Tip Did you know… you can import multiple classes from a single namespace like this👇 Way cleaner, right? 😁

laravelbackpack's tweet image. #Laravel and #PHP Tip

Did you know… you can import multiple classes from a single namespace like this👇

Way cleaner, right? 😁

Huge shoutout to @filamentphp 🎉 Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜 At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP
naamsachin's tweet image. Huge shoutout to @filamentphp 🎉
Frontend that vibes ✨ + backend that hustles 💪 = pure developer happiness 💜
At this point, Laravel without Filament feels like chai without sugar 🚀 #Laravel #FilamentPHP

#Laravel Tip Did you know... You can fetch a single column directly with value() — simpler & faster than first().

laravelbackpack's tweet image. #Laravel Tip

Did you know... You can fetch a single column directly with value() — simpler & faster than first().

PHP is a fun and awesome language BTW. #PHP #Laravel

CodeSushil's tweet image. PHP is a fun and awesome language BTW.

#PHP #Laravel

#Laravel #PHP Do you use compact() when passing data to views....? Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use compact() when passing data to views....?

Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇

#Laravel Tip Did you know... Laravel understands your relations and lets you write much cleaner code👇

laravelbackpack's tweet image. #Laravel Tip

Did you know... Laravel understands your relations and lets you write much cleaner code👇

#Laravel #PHP Ever replaced a bunch of isset() checks with optional chaining? Smart move or risky readability hit? 👇

laravelbackpack's tweet image. #Laravel #PHP

Ever replaced a bunch of isset() checks with optional chaining?

Smart move or risky readability hit? 👇

For all the #Laravel devs out there using Windows 💻 composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

JaiveerChavda's tweet image. For all the #Laravel devs out there using Windows 💻

composer install — the most “productive” 5–10 minutes of every Laravel developer’s day 😅

One thing I’ve learned as a developer: Don’t use the “popular” tool, use the right one. My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner. Growth is realizing efficiency > hype. #WebDev #PHP #Laravel

joydev_1's tweet image. One thing I’ve learned as a developer:
Don’t use the “popular” tool, use the right one.
My latest construction site didn’t need Laravel — plain PHP did the job faster and cleaner.
Growth is realizing efficiency > hype.
#WebDev #PHP #Laravel

Option B: #Laravel Tips 💡 1️⃣ Using whereYear() feels neat, but it disables your index and forces a full table scan, not ideal for large datasets. Instead, use date ranges to keep queries fast and index-friendly.

Akr4mKhan's tweet image. Option B: #Laravel Tips 💡

1️⃣ Using whereYear() feels neat, but it disables your index and forces a full table scan, not ideal for large datasets. Instead, use date ranges to keep queries fast and index-friendly.

Multi-language #laravel apps sound great… until they turn into a sloppy mess. Fast-forward 3 months after this convo… - The app is a half-translated soup. - Customers are confused. - The brand looks sloppy. - Everyone’s frustrated. But... what if there was a better way?! 🧵👇🏻

tabacitu's tweet image. Multi-language #laravel apps sound great… until they turn into a sloppy mess.

Fast-forward 3 months after this convo…
- The app is a half-translated soup.
- Customers are confused.
- The brand looks sloppy.
- Everyone’s frustrated.

But... what if there was a better way?! 🧵👇🏻

#Laravel Tip 🚀 In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

iamgurmandeep's tweet image. #Laravel Tip 🚀

In Laravel 12, you can automatically cast Eloquent attributes to HTML strings using `AsHtmlString::class`.

#Laravel #PHP Do you use ?? or stick with isset() ? Clean shortcut or confusing syntax? What do you think...👇

laravelbackpack's tweet image. #Laravel #PHP

Do you use ?? or stick with isset() ?

Clean shortcut or confusing syntax?  What do you think...👇

#Laravel Tip Eager load relationships to avoid N+1 query issues👇

laravelbackpack's tweet image. #Laravel Tip

Eager load relationships to avoid N+1 query issues👇

What's stopping you from coding like this? Man, I love home. #php #laravel

chasecmiller's tweet image. What's stopping you from coding like this? Man, I love home.

#php #laravel

Loading...

Something went wrong.


Something went wrong.


United States Trends