1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00

Change 2021-01 to 2022-01

This commit is contained in:
lukinovec 2022-01-07 17:49:46 +01:00
parent d1baa50b87
commit 3f8062e713
21 changed files with 43 additions and 43 deletions

View file

@ -1,5 +1,5 @@
---
slug: weekly-thread-2021-01
slug: weekly-thread-2022-01
title: 'Weekly thread #01 of 2022'
tweet_id: '1479467928818892800'
author_username: archtechx
@ -8,4 +8,4 @@ links: { }
---
🔥 Latest code tips for Laravel developers
First week's special: news from the past 3 weeks 🧵
First week's special: news from the past 3 weeks 🧵

View file

@ -1,7 +1,7 @@
---
title: 'Adding WHERE scopes which use an indexed column to a query that''s primarily filtered by another column is a great way to speed up DB performance'
tweet_id: '1471864653491974151'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: tobias_petry
images:
- 'https://pbs.twimg.com/media/FGafd_JXMAEDgP5.jpg'
@ -10,4 +10,4 @@ slug: adding-where-scopes-which-use-an-indexed-column-to-a-query-thats-primarily
---
⚡️ Database Tip
Sometimes you have seldom used queries and you can't add an index on columns for these queries. A nice trick is to use another indexed condition so the rows are filtered by the indexable column first and afterwards again for the more limiting condition.
Sometimes you have seldom used queries and you can't add an index on columns for these queries. A nice trick is to use another indexed condition so the rows are filtered by the indexable column first and afterwards again for the more limiting condition.

View file

@ -1,7 +1,7 @@
---
title: 'Compare models using is() instead of directly comparing attributes'
tweet_id: '1479467936700010504'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: archtechx
images:
- 'https://pbs.twimg.com/media/FHJNmt3VEAIYtCy.jpg'
@ -10,4 +10,4 @@ slug: compare-models-using-is-instead-of-directly-comparing-attributes
---
🔥 Tip: Compare models using ->is() instead of doing direct attribute value comparisons
This is a simpler version of the tip below https://twitter.com/archtechx/status/1465334771349811219
This is a simpler version of the tip below https://twitter.com/archtechx/status/1465334771349811219

View file

@ -1,7 +1,7 @@
---
title: 'Custom collections pair well with higher order proxies'
tweet_id: '1479467951753285637'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: archtechx
images:
- 'https://pbs.twimg.com/media/FIa84E5VUAAQsL1.jpg'
@ -10,4 +10,4 @@ slug: custom-collections-pair-well-with-higher-order-proxies
---
🔥 Custom collections pair very well with higher order proxies
When you have some repetitive low level logic that you'd like to abstract into more readable methods that follow your business terminology, custom collections can be a great choice
When you have some repetitive low level logic that you'd like to abstract into more readable methods that follow your business terminology, custom collections can be a great choice

View file

@ -1,7 +1,7 @@
---
title: 'From PHP 7.4, you can use the spread syntax to merge arrays'
tweet_id: '1479467945822588931'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: bhaidar
images:
- 'https://pbs.twimg.com/media/FIDdCQvVEAMsK3l.jpg'
@ -12,4 +12,4 @@ slug: from-php-74-you-can-use-the-spread-syntax-to-merge-arrays
Available since PHP 7.4+
#Laravel
#Laravel

View file

@ -1,11 +1,11 @@
---
title: 'Number markdown lists with `1.` rather than the actual number'
tweet_id: '1479467929888440329'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: frankdejonge
images:
- 'https://pbs.twimg.com/media/FHNHLM8X0AA6sqs.png'
created_at: 2022-01-07T15:00:16+00:00
slug: number-markdown-lists-with-1-rather-than-the-actual-number
---
💡 A little thing I always like to do. Use only "1." for numbered lists in markdown. The list is rendered the same, but adding an item doesn't require you to renumber the other items 🤘
💡 A little thing I always like to do. Use only "1." for numbered lists in markdown. The list is rendered the same, but adding an item doesn't require you to renumber the other items 🤘

View file

@ -1,7 +1,7 @@
---
title: 'PHP 8.1 enums can be used as model casts'
tweet_id: '1479467948985126913'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: ryangjchandler
images:
- 'https://pbs.twimg.com/media/FIRla1cX0AUpxGS.jpg'
@ -10,4 +10,4 @@ slug: php-81-enums-can-be-used-as-model-casts
---
🔥 Did you know that @laravelphp can cast model columns into instances an enum in PHP 8.1?
The example below will create an instance of `OrderStatus` based on variant value. If the `status` column has the value `shipped`, it will return the `OrderStatus::Shipped` variant.
The example below will create an instance of `OrderStatus` based on variant value. If the `status` column has the value `shipped`, it will return the `OrderStatus::Shipped` variant.

View file

@ -1,7 +1,7 @@
---
title: 'Use `composer why-not` to see why a dependency cannot be installed'
tweet_id: '1479467931159334915'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: freekmurze
images:
- 'https://pbs.twimg.com/media/FHFSeQyXMAk3JFi.jpg'
@ -9,4 +9,4 @@ created_at: 2022-01-07T15:00:16+00:00
slug: use-composer-why-not-to-see-why-a-dependency-cannot-be-installed
---
🔥 Composer has a `why-not` command that will tell you why it wont install a particular version of a package
#php
#php

View file

@ -1,13 +1,13 @@
---
title: 'Use match () or switch () statements to conditionally scope database queries based on query strings in the request'
tweet_id: '1471864655710670854'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: archtechx
images:
- 'https://pbs.twimg.com/media/FGmQH5nXEAs4mnv.jpg'
created_at: 2021-12-17T15:27:34+00:00
slug: use-match-or-switch-statements-to-conditionally-scope-database-queries-based-on-query-strings-in-the-request
---
Remembered this great tip recently, and it's nice to see how fast PHP evolves
Remembered this great tip recently, and it's nice to see how fast PHP evolves
The exact same behavior can be implemented using match () with a default value, which also removes the need for the second callback ⚡️ https://twitter.com/reinink/status/1233017064492761088
The exact same behavior can be implemented using match () with a default value, which also removes the need for the second callback ⚡️ https://twitter.com/reinink/status/1233017064492761088

View file

@ -1,7 +1,7 @@
---
title: 'Use partitions for deleting mass amounts of data'
tweet_id: '1479467943276670979'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: tobias_petry
images:
- 'https://pbs.twimg.com/media/FIQQcQSXwAk2rDy.jpg'
@ -10,4 +10,4 @@ slug: use-partitions-for-deleting-mass-amounts-of-data
---
Database Tip
Some applications want to periodically deleted old historic data (or have to because of regulations). Deleting billions of rows is a very slow task which could take several minutes and may take your application down. Use partitions for efficient deleting!
Some applications want to periodically deleted old historic data (or have to because of regulations). Deleting billions of rows is a very slow task which could take several minutes and may take your application down. Use partitions for efficient deleting!

View file

@ -1,7 +1,7 @@
---
title: 'Use retry() for callbacks that may randomly fail'
tweet_id: '1471864638199451648'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: alexjgarrett
images:
- 'https://pbs.twimg.com/media/FGP3MSQWQAYKjSm.jpg'
@ -12,4 +12,4 @@ slug: use-retry-for-callbacks-that-may-randomly-fail
I was hitting a shaky API that sometimes failed.
Here, the retry function tries the callback 3 times, with a 2 second interval in-between retries.
Here, the retry function tries the callback 3 times, with a 2 second interval in-between retries.

View file

@ -1,7 +1,7 @@
---
title: 'Use skip() when writing tests ahead of time'
tweet_id: '1479467933705195521'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: bhaidar
images:
- 'https://pbs.twimg.com/media/FHNHgg4VgAAFSzE.jpg'
@ -12,4 +12,4 @@ slug: use-skip-when-writing-tests-ahead-of-time
If you like to plan your tests ahead of time and implement them one by one, you can always make use of a handy method `skip()` to tell the test runner to ignore those empty tests.
`skip()` accepts a callback too!
`skip()` accepts a callback too!

View file

@ -1,7 +1,7 @@
---
title: 'Use the `SOUNDEX()` function in MySQL to compare strings by how they *sound* rather than how they''re typed'
tweet_id: '1479467947634556930'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: justsanjit
images:
- 'https://pbs.twimg.com/media/FHuueNxWUAMLdAP.jpg'
@ -10,4 +10,4 @@ slug: use-the-soundex-function-in-mysql-to-compare-strings-by-how-they-sound-rat
---
🔥 In #mysql you can compare strings by how they sound rather than how they have been typed using SOUNDEX() function
#laravelframework #laravel #mysql #sql
#laravelframework #laravel #mysql #sql

View file

@ -1,7 +1,7 @@
---
title: 'You can add a --refresh flag to the artisan down command to send a refresh header to the browser'
tweet_id: '1471864676652826626'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: DianaWebdev
images:
- 'https://pbs.twimg.com/media/FG0dHeBXwAw3bvc.jpg'

View file

@ -1,7 +1,7 @@
---
title: 'You can refactor cluttered if () conditions using lookup tables, match statements, and switch statements'
tweet_id: '1471864664661311488'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: archtechx
images:
- 'https://pbs.twimg.com/media/FGVrAKdVgAIWfwk.jpg'
@ -12,4 +12,4 @@ slug: you-can-refactor-cluttered-if-conditions-using-lookup-tables-match-stateme
First: lookup tables 👇
These are great for refactoring complex conditions with lots of else if () cases
These are great for refactoring complex conditions with lots of else if () cases

View file

@ -1,7 +1,7 @@
---
title: 'You can supply default values for route parameters'
tweet_id: '1479467942039285762'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: ryangjchandler
images:
- 'https://pbs.twimg.com/media/FIWa8DxXMAIW7Tz.jpg'
@ -10,4 +10,4 @@ slug: you-can-supply-default-values-for-route-parameters
---
🔥 Did you know that you can supply default values for route parameters in @laravelphp?
In the screenshot below, we use the current user's account as the default value for `{account}`. This means we don't have to provide it when generating the `users.index` route.
In the screenshot below, we use the current user's account as the default value for `{account}`. This means we don't have to provide it when generating the `users.index` route.

View file

@ -1,11 +1,11 @@
---
title: 'You can use Blade::stringable() to define how specific objects should be converted to their string representation'
tweet_id: '1479467939191345152'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: Philo01
images:
- 'https://pbs.twimg.com/media/FHn41aBXsAAUyar.jpg'
created_at: 2022-01-07T15:00:18+00:00
slug: you-can-use-bladestringable-to-define-how-specific-objects-should-be-converted-to-their-string-representation
---
Laravel Tip 💡 You can use the 'Blade::stringable' method to convert objects into their string representation. For example, automatically convert a Money object and show the amount in a specific currency.
Laravel Tip 💡 You can use the 'Blade::stringable' method to convert objects into their string representation. For example, automatically convert a Money object and show the amount in a specific currency.

View file

@ -1,7 +1,7 @@
---
title: 'You can use first class callables for routes in PHP 8.1'
tweet_id: '1479467932379799552'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: archtechx
images:
- 'https://pbs.twimg.com/media/FHNP2kIVUAIqiCH.jpg'
@ -12,4 +12,4 @@ slug: you-can-use-first-class-callables-for-routes-in-php-81
The caveat is that the methods need to be static because there's no syntax for referencing instance methods on classes
I don't use constructor DI in my apps, so static methods are fine despite feeling a bit non-standard
I don't use constructor DI in my apps, so static methods are fine despite feeling a bit non-standard

View file

@ -1,7 +1,7 @@
---
title: 'You can use generic class-string annotations to hint that an instance of the passed class is returned'
tweet_id: '1479467944581033986'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: freekmurze
images:
- 'https://pbs.twimg.com/media/FIN1v4NWUAARbol.jpg'
@ -12,6 +12,6 @@ This is how you can hint that a function returns an instance of the class of whi
Cool stuff!
Hat tip to @enunomaduro
Hat tip to @enunomaduro
https://github.com/spatie/laravel-route-discovery/blob/7fa88922aa693b03b4763eda870867075ab44999/src/PendingRoutes/PendingRouteAction.php#L100-L107
https://github.com/spatie/laravel-route-discovery/blob/7fa88922aa693b03b4763eda870867075ab44999/src/PendingRoutes/PendingRouteAction.php#L100-L107

View file

@ -1,7 +1,7 @@
---
title: 'You can use `onerror` on the image tag'
tweet_id: '1479467940726468609'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: JuanDMeGon
images:
- 'https://pbs.twimg.com/media/FIWjvXSWUAYjM-j.jpg'
@ -9,4 +9,4 @@ created_at: 2022-01-07T15:00:18+00:00
slug: you-can-use-onerror-on-the-image-tag
---
😲 TIL:
You can hide an image when it is broken so you don't get that ugly broken image icon from the browser.
You can hide an image when it is broken so you don't get that ugly broken image icon from the browser.

View file

@ -1,7 +1,7 @@
---
title: 'You can use the array spread syntax to pass an array of arguments to another function'
tweet_id: '1471864644562305025'
thread_slug: weekly-thread-2021-01
thread_slug: weekly-thread-2022-01
author_username: freekmurze
images:
- 'https://pbs.twimg.com/media/FGepj8mWQAUf2R_.jpg'
@ -14,4 +14,4 @@ Heres a self-contained example where we spread the array output of sys_getloa
https://github.com/spatie/cpu-load-health-check/blob/70f387d5167c24d4000d825a5bddab2504d557fb/src/CpuLoad.php#L17
#php
#php