diff --git a/content/threads/weekly-thread-2022-07.md b/content/threads/weekly-thread-2022-06.md similarity index 61% rename from content/threads/weekly-thread-2022-07.md rename to content/threads/weekly-thread-2022-06.md index 2b4b236..f354afe 100644 --- a/content/threads/weekly-thread-2022-07.md +++ b/content/threads/weekly-thread-2022-06.md @@ -1,6 +1,6 @@ --- -slug: weekly-thread-2022-07 -title: 'Weekly thread #07 of 2022' +slug: weekly-thread-2022-06 +title: 'Weekly thread #06 of 2022' tweet_id: '1494019542648901632' author_username: archtechx created_at: 2022-02-17T10:14:38+00:00 @@ -10,4 +10,4 @@ links: { } A weekly thread 🧵 -https://twitter.com/archtechx/status/1493663801715081221 \ No newline at end of file +https://twitter.com/archtechx/status/1493663801715081221 diff --git a/content/tips/in-laravel-9-you-can-use-str-instead-of-strof.md b/content/tips/in-laravel-9-you-can-use-str-instead-of-strof.md index 66791f5..65935cb 100644 --- a/content/tips/in-laravel-9-you-can-use-str-instead-of-strof.md +++ b/content/tips/in-laravel-9-you-can-use-str-instead-of-strof.md @@ -1,11 +1,11 @@ --- title: 'In Laravel 9, you can use str() instead of Str::of()' tweet_id: '1494019557249335296' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: jasonlbeggs images: - 'https://pbs.twimg.com/media/FLKjhn4XMAIZqNI.png' created_at: 2022-02-16T18:43:14+00:00 slug: in-laravel-9-you-can-use-str-instead-of-strof --- -The `str` helper in @laravelphp v9 is 🔥 \ No newline at end of file +The `str` helper in @laravelphp v9 is 🔥 diff --git a/content/tips/laravel-9-can-automatically-bind-route-parameters-to-enums.md b/content/tips/laravel-9-can-automatically-bind-route-parameters-to-enums.md index 07cc8d9..03c4486 100644 --- a/content/tips/laravel-9-can-automatically-bind-route-parameters-to-enums.md +++ b/content/tips/laravel-9-can-automatically-bind-route-parameters-to-enums.md @@ -1,7 +1,7 @@ --- title: 'Laravel 9 can automatically bind route parameters to enums' tweet_id: '1494019551310139392' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: mmartin_joo images: - 'https://pbs.twimg.com/media/FLJ8Gt_XsAM98uy.jpg' @@ -10,4 +10,4 @@ slug: laravel-9-can-automatically-bind-route-parameters-to-enums --- 🔥Laravel 9 introduced enum route bindings! -You can type-hint your enum and Laravel will cast the string value from the URL: \ No newline at end of file +You can type-hint your enum and Laravel will cast the string value from the URL: diff --git a/content/tips/name-contracts-as-descriptors-and-implementations-as-orders.md b/content/tips/name-contracts-as-descriptors-and-implementations-as-orders.md index 5234fda..6a266af 100644 --- a/content/tips/name-contracts-as-descriptors-and-implementations-as-orders.md +++ b/content/tips/name-contracts-as-descriptors-and-implementations-as-orders.md @@ -1,7 +1,7 @@ --- title: 'Name contracts as descriptors and implementations as orders' tweet_id: '1494019563490402305' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: MikeVILT images: - 'https://pbs.twimg.com/media/FLKZjZbXMAQ18WD.jpg' @@ -12,4 +12,4 @@ A great tip from Luke @LukeDowning19, "Name contracts as descriptions and implementations as orders" -#laracon \ No newline at end of file +#laracon diff --git a/content/tips/specify-container-bindings-using-the-bindings-array.md b/content/tips/specify-container-bindings-using-the-bindings-array.md index cffbaf4..37c2fa3 100644 --- a/content/tips/specify-container-bindings-using-the-bindings-array.md +++ b/content/tips/specify-container-bindings-using-the-bindings-array.md @@ -1,16 +1,16 @@ --- title: 'Specify container bindings using the $bindings array' tweet_id: '1494019548374126594' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: freekmurze images: - 'https://pbs.twimg.com/media/FLKZmOCWYAAq9Hd.jpg' created_at: 2022-02-16T18:43:12+00:00 slug: specify-container-bindings-using-the-bindings-array --- -🔥 Cool tidbit I learned during @LukeDowning19 ’s talk. +🔥 Cool tidbit I learned during @LukeDowning19 ’s talk. You can add a `$bindings` array to a service provider to bind things. https://laravel.com/docs/9.x/providers#the-bindings-and-singletons-properties -#laravel #php \ No newline at end of file +#laravel #php diff --git a/content/tips/use-the-policy-helper-to-resolve-a-policy-for-a-model.md b/content/tips/use-the-policy-helper-to-resolve-a-policy-for-a-model.md index 9f6878f..aad8797 100644 --- a/content/tips/use-the-policy-helper-to-resolve-a-policy-for-a-model.md +++ b/content/tips/use-the-policy-helper-to-resolve-a-policy-for-a-model.md @@ -1,7 +1,7 @@ --- title: 'Use the policy() helper to resolve a policy for a model' tweet_id: '1494019545446567939' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: asantibanez images: - 'https://pbs.twimg.com/media/FLNAs-bXIAExJxr.jpg' @@ -10,4 +10,4 @@ slug: use-the-policy-helper-to-resolve-a-policy-for-a-model --- TIL about @laravelphp policy() helper. Give it a model and it will resolve the policy for you. -Very useful when testing policies behavior. 💪 \ No newline at end of file +Very useful when testing policies behavior. 💪 diff --git a/content/tips/you-can-skip-transformrequests-type-middleware.md b/content/tips/you-can-skip-transformrequests-type-middleware.md index 91a3a22..eec8e6c 100644 --- a/content/tips/you-can-skip-transformrequests-type-middleware.md +++ b/content/tips/you-can-skip-transformrequests-type-middleware.md @@ -1,7 +1,7 @@ --- title: 'You can skip() TransformRequests-type middleware' tweet_id: '1494019554304880641' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: pascalbaljet images: - 'https://pbs.twimg.com/media/FKwygqPWQAMRaTr.jpg' @@ -12,4 +12,4 @@ slug: you-can-skip-transformrequests-type-middleware For example, you can use it on 'TrimStrings' and 'ConvertEmptyStringsToNull'. -#Laravel #PHP #webdev \ No newline at end of file +#Laravel #PHP #webdev diff --git a/content/tips/you-can-use-the-at-checked-blade-directive-to-generate-checked-markup.md b/content/tips/you-can-use-the-at-checked-blade-directive-to-generate-checked-markup.md index 50541c0..e6535a1 100644 --- a/content/tips/you-can-use-the-at-checked-blade-directive-to-generate-checked-markup.md +++ b/content/tips/you-can-use-the-at-checked-blade-directive-to-generate-checked-markup.md @@ -1,7 +1,7 @@ --- title: 'You can use the @checked Blade directive to generate checked="" markup' tweet_id: '1494019560223096837' -thread_slug: weekly-thread-2022-07 +thread_slug: weekly-thread-2022-06 author_username: AshAllenDesign images: - 'https://pbs.twimg.com/media/FKwA95pWUAInwgf.jpg' @@ -12,4 +12,4 @@ slug: you-can-use-the-at-checked-blade-directive-to-generate-checked-markup This is going to be a nice addition that we can use to clean up our Blade views a little bit -#laravel #php \ No newline at end of file +#laravel #php