#laraveltip Suchergebnisse
๐ก Did you know you can use dependency injection in the rules method of @laravelphp form requests? Itโs a nice spot for injecting your custom invokable validation rules. #Laravel #LaravelTip
โ๏ธ #LaravelTip: Elevate your team-based access control game with the 'BelongsToTeam' trait! ๐ก๏ธ โ Seamlessly tie records to user's teams โ Apply global & local scopes for precise data filtering โ Streamline team relationships Empower your #Laravel app's team management! ๐ช๐ฅ
Did you know you can send @filamentphp notifications on demand using JS? Love it ๐ #filamenttip #laraveltip
๐ #LaravelTip: Did you know you can use Laravel's queue batching to group jobs and perform actions after all jobs have finished? This powerful tool can optimize performance and reduce database overhead too. Define a batch with Bus::batch() and add jobs with add(). @laravelphp
๐ #LaravelTip: Boost database migrations with hasColumn and hasTable! ๐ ๏ธ Ensure your tables and columns exist before modifying them. Smooth migrations for a smoother development journey. ๐ป๐ง You may use them outside of migrations if you want ๐ง #Laravel #PHP ๐ก
๐ค Did you know that you can define default values for route parameters in #Laravel? ๐ฃ๏ธ This is a great way to provide fallback values for optional parameters in your web.php or api.php files. ๐ฅ #laraveltip
Laravel tip related to route model binding: When you need to use attribute other than id for route model binding you can use following technique. #Laravel #LaravelTip
#LaravelTip: Using the EXPLAIN statement to analyze your database queries is helpful, and Laravel enhances this by pairing explain() with dd(). This combination helps you identify the indexes your query uses and how you can optimize it.
๐ #LaravelTip: Protect user privacy with `Str::mask`! Mask email addresses like a pro. Keep sensitive data safe with ease! ๐โ๏ธ #Laravel #SecurityTips #100DaysOfCode
#laravelTip: data_get() is really useful when it comes to dealing with arrays and accessing keys. Which do you prefer? #isset vs #data_get #php
Just made a tiny script to remove (accidentally) duplicated rows in #Laravel Do you have any other methods? #laraveltips #laraveltip #PHP
#LaravelTip For unit tests with multi-column data, use `sequence` to generate records with varying values in a single query! Saves time & keeps your tests concise.
๐ก Laravel Tip Use when() in your Eloquent queries to conditionally apply clauses โ clean & readable! This keeps your code elegant and avoids messy if conditions around your queries. #laraveltip #laravel #php
#LaravelTip Str::repeat() creative use cases - I love it
Here are some creative use cases for Laravelโs string repeat helper. What have you used it for in the past?
Did you know you donโt need to use both @if and @foreach to show a list in Laravel? Just use @forelse โ it shows the items and handles the empty message too. So much cleaner! #laravel #laraveltip #php
#LaravelTip: Want to automatically clean up old records from your database? Use the Prunable trait! No need for custom Artisan commands โ Laravel handles it for you. Example: Letโs say you want to delete users who havenโt logged in for over a year:
#LaravelTip: If you want to reuse the same test with different data, consider utilizing data sets ๐
#LaravelTip: Ever encountered those rare but pesky unstable tests in your tests? Pest's handy "repeat" feature is perfect for catching those rate failures, even when they only happen once in a blue moon on your CI/CD. ๐
#LaravelTip: Unlock the power of Laravel Factories with the overlooked recycle() method. - Boost test speed by 10x. - Dive deep into complex scenarios. - Save time on data setup before testing.
#LaravelTip: Level up your testing game with PHP Faker in Laravel! Create nullable data with just the right touch of randomness, control it from 0% to 100%!
#LaravelTip: Laravel 11 finally introduces a method to test "failed," "released," and "deleted" queue jobs! This is so awesomeโI had to take difficult routes to achieve this before!
#LaravelTip: Laravel's "preventStrayRequests()" method stops actual requests during testing, useful for both third-party and local APIs. Tests may pass locally but fail in CI, where only the service under test is active, causing issues with unavailable APIs.
#LaravelTip: Boost security and follow best practices by returning a 404 instead of a 403 during validation. ๐
#LaravelTip: Magical helper yet provides a lot of value ... When you want to "Cache" a result of something during the request cycle and use it in multiple places.
#LaravelTip: Laravel v11.27.1 introduced a new service provider method called "optimizes". You can now define commands to run with the "optimize" and "optimize:clear" commands, such as "queue:restart" or other custom commands ๐
#laraveltip: You might want to apply global headers to all outgoing requests. For example, a global user agent can help identify your app's requests in other services or third-party APIs. Laravel already supports request and response middleware to achieve this ๐
#LaravelTip: Finally, Retry Concurrent Requests Stuck with failed concurrent requests in Laravel 10 and earlier? Not anymore! Laravel 11's got your back. ๐
#LaravelTip: Eloquent API resources usually come wrapped in a "data" objectโbut what if you want to strip away that layer? Laravel's "withoutWrapping" method lets you do just that. ๐
#LaravelTip: Powered by Guzzle, the Laravel HTTP Client offers detailed request insightsโtrack total time, download speed, and more! ๐
#LaravelTip: Auto-serialization of Eloquent models in jobs can lead to a ModelNotFoundException if they're deleted before processing. Avoid the hassle by setting deleteWhenMissingModels to true and seamlessly discard those jobs! ๐
Laravel Tip: When you have a relationship and you don't want to return a null value you can use withDefaults like in this example. #laravel #laraveltip
โ๏ธ #LaravelTip: Elevate your team-based access control game with the 'BelongsToTeam' trait! ๐ก๏ธ โ Seamlessly tie records to user's teams โ Apply global & local scopes for precise data filtering โ Streamline team relationships Empower your #Laravel app's team management! ๐ช๐ฅ
With @laravelphp v9 you can use Laravel Scout (Search) with database driver. No more where likes! #laravel #laraveltip
๐ #LaravelTip: Boost database migrations with hasColumn and hasTable! ๐ ๏ธ Ensure your tables and columns exist before modifying them. Smooth migrations for a smoother development journey. ๐ป๐ง You may use them outside of migrations if you want ๐ง #Laravel #PHP ๐ก
๐ก Did you know you can use dependency injection in the rules method of @laravelphp form requests? Itโs a nice spot for injecting your custom invokable validation rules. #Laravel #LaravelTip
๐ #LaravelTip: Preview Mailables Easily ๐ Big thanks to Freek Van Der Harten for sharing this invaluable Laravel tip! ๐๐ก Check it out and level up your Laravel development game. ๐ฏ #Laravel #php โผ๏ธ
๐ฃ๐ฃ Did you know you can apply multiple states in your factories? ๐ฅ๐ฅ #laravel #laravelTip
๐ค Did you know that you can define default values for route parameters in #Laravel? ๐ฃ๏ธ This is a great way to provide fallback values for optional parameters in your web.php or api.php files. ๐ฅ #laraveltip
Something went wrong.
Something went wrong.
United States Trends
- 1. #GivingTuesday 22.5K posts
- 2. #twitchrecap 5,606 posts
- 3. Larry 31.8K posts
- 4. Costco 47K posts
- 5. #AppleMusicReplay 7,817 posts
- 6. Jared Curtis 2,348 posts
- 7. #DragRace 3,948 posts
- 8. Susan Dell 5,385 posts
- 9. #csm222 6,244 posts
- 10. NextNRG Inc. 2,552 posts
- 11. So 79% 1,121 posts
- 12. Lucario 23.8K posts
- 13. BT and Sal N/A
- 14. Carton 28.9K posts
- 15. King Von 1,596 posts
- 16. WFAN N/A
- 17. Punk and AJ 1,383 posts
- 18. Trump Accounts 12K posts
- 19. Michael and Susan 3,605 posts
- 20. $BBAI 2,312 posts