#laraveltip search results
โ๏ธ #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! ๐ช๐ฅ
๐ #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: 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
๐ค 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
Did you know you can send @filamentphp notifications on demand using JS? Love it ๐ #filamenttip #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 โผ๏ธ
๐ #LaravelTip: Use Laravel's Pipeline to simplify complex data processing workflows.Ex: Imagine you have an e-commerce site and need to process orders. You can use a pipeline to handle an order through a series of stages, such as checking, updating stock, and notifying the user.
Laravel Tip: You can use Laravel's built-in Str::of helper method to manipulate strings in a fluent way. #Laravel #LaravelTip #code #programming
Just made a tiny script to remove (accidentally) duplicated rows in #Laravel Do you have any other methods? #laraveltips #laraveltip #PHP
Tip: Combined enum, match, and arrow function with Eloquent query in Laravel #LaravelTip #Laravel #PHP
๐ #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
๐ก 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! ๐
โ๏ธ #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! ๐ช๐ฅ
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
๐ก 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: 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
๐ #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 โผ๏ธ
With @laravelphp v9 you can use Laravel Scout (Search) with database driver. No more where likes! #laravel #laraveltip
๐ฅ #LaravelTip The firstWhere method on a collection returns the first element with the given key / value pair.
#laraveltip Did you know that #laravel Form Requests have an undocumented method where you can perform logic before the validation takes place? It's a great spot to perform things like input santization:
๐ค #LaravelTip You can override the validationData method on your custom FormRequest class if you need to modify the request data _before_ it's validated against. #laravel
#LaravelTip You can pass arguments to the make:model command to generate a model with a resource controller, factory, and migration. ๐ฅ
Something went wrong.
Something went wrong.
United States Trends
- 1. Warner Bros 127K posts
- 2. HBO Max 58.1K posts
- 3. #FanCashDropPromotion 1,428 posts
- 4. Good Friday 59.1K posts
- 5. #FridayVibes 4,661 posts
- 6. #NXXT_CleanEra N/A
- 7. Paramount 28.7K posts
- 8. Ted Sarandos 4,142 posts
- 9. Jake Tapper 61K posts
- 10. $NFLX 5,653 posts
- 11. David Zaslav 2,077 posts
- 12. TINY CARS 1,518 posts
- 13. #FridayFeeling 1,989 posts
- 14. Core PCE 2,982 posts
- 15. Bandcamp Friday 2,044 posts
- 16. The EU 143K posts
- 17. NO U.S. WAR ON VENEZUELA 3,426 posts
- 18. National Security Strategy 12.9K posts
- 19. Happy Friyay 1,255 posts
- 20. #FridayMotivation 4,648 posts