🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)
🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)

🔧 Programmierung 🕛 kürzlich 5 Min Lesezeit
0

Laravel Under The Hood - A Little Bit of Macros

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht




Hello 👋



How often have you wished for a method that doesn't exist on collections or string helpers? You start chaining methods, only to hit a wall when one of them turns out to be missing. Honestly, it's understandable; frameworks, you know, are a one-size-fits-all thing. I found myself in this situation multiple times. Every time, before diving into how to extend the framework, I check to see if what I want to extend is macroable or not. But what does that mean? That's exactly what we'll be exploring!






WTF are Macros? 🍏



Let's say we have this JWT:




CODE
$jwt = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c';






And we need to extract the headers:




CODE
str($jwt)
->before('.')
->fromBase64()
->fromJson(); // does not exist 😞

// BadMethodCallException Method Illuminate\Support\Stringable::fromJson does not exist.






The fromJson() doesn't exist 😔 Sure, one could simply do:




CODE
json_decode(str($jwt)->before('.')->fromBase64());






But where's the fun in that? Plus, it is my article 🤷



So, we need a way to extend the Stringable class. There are a few ways to do this, but Laravel thought ahead, it knew that developers might want to add custom methods, so it made the class macroable, or as I like to call it, extendable.




If you inspect the Illuminate\Support\Stringable class, you'll see it uses a Macroable trait.




Let's go ahead and extend the class. In the AppServiceProvider, add the following:




CODE
<?php

namespace App\Providers;

use Illuminate\Support\Stringable;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
Stringable::macro('fromJson', function (bool $associative = true) {
return json_decode($this->value, $associative);
});
}
}






Now let's rerun the code:




CODE
str($jwt)
->before('.')
->fromBase64()
->fromJson();

// ["alg" => "HS256", "typ" => "JWT"]






It works perfectly 🎉 But now, you might be wondering, how did this work? And what exactly is $this->value? What in the harry potter is going on?






Unveiling the magic 🪄



We know that the Stringable class uses the Macroable trait, which provides the macro() method. Let's take a closer look at what it does:




CODE
// src/Illuminate/Macroable/Traits/Macroable.php

/**
* Register a custom macro.
*
* @param string $name
* @param object|callable $macro
*
* @param-closure-this static $macro
*
* @return void
*/

public static function macro($name, $macro)
{
static::$macros[$name] = $macro;
}






It's pretty straightforward, it just saves the callback to a static macros array. Now, if we inspect the trait further, we will find the __call method, which is triggered every time a non-existent method is called. In our case, that's fromJson(). Let's dive in:




CODE
/**
* Dynamically handle calls to the class.
*
* @param string $method
* @param array $parameters
* @return mixed
*
* @throws \BadMethodCallException
*/

public function __call($method, $parameters)
{
if (! static::hasMacro($method)) {
throw new BadMethodCallException(sprintf(
'Method %s::%s does not exist.', static::class, $method
));
}

$macro = static::$macros[$method];

if ($macro instanceof Closure) {
$macro = $macro->bindTo($this, static::class);
}

return $macro(...$parameters);
}






First, it checks if a macro is registered, which is the case with fromJson(), it then fetches the callback (or object) from the macros array. Now for the magic trick, if the macro is a closure (as in our case), it calls bindTo(), which essentially tells the closure that $this should refer to whatever is passed as the first argument. In this case, it is the Stringable instance, which happens to have the $value attribute.




CODE
// $this here is the stringable
// $this inside the closure is now referencing the stringable class
$macro->bindTo($this, static::class);






And this is why we can do $this->value.






We can do better: Mixins 🧩



There is one more thing I want to show you! When we extend the same class a couple of times, the service provider might get messy very quick. We can extract all our custom macros to a class called a Mixin.



Let's create a StringableMixin:




CODE
<?php

namespace App\Macros;

use Closure;

class StringableMixin
{
public function fromJson(): Closure
{
return function (bool $associative = true) {
json_decode($this->value, $associative);
};
}

// Add more macros here as needed
}






Now, in AppServiceProvider, we can register this mixin:




CODE
use App\Macros\StringableMixin;
use Illuminate\Support\Stringable;

class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
Stringable::mixin(new StringableMixin);
}
}






And that's it! Now we can do:




CODE
str($jwt)
->before('.')
->fromBase64()
->fromJson();







Which is basically the same, just a bit cleaner.




If you are curious about how this works, the mixin() method on the Macroable trait uses the package.



You can install the package and generate the _ide_helper.php file, and you should be good to go.






And so it ends..



Our example is fairly simple, but you can push macros much further than this, as most of the common classes Laravel ships with are macroable. For instance, you can add a new apiResponse() macro, or anything that you feel is very common in your app's logic and is being repeated more than it should be. But don't overdo it. Macros add a new layer of complexity, and when working in a team, they could be confusing.



Soo, whenever you feel something is missing from your application, but not from the framework itself, use macros 🪄

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
3 Quellen
GPT-6 Astra Release Today? OpenAI’s Next Major AI Model Is Almost Here
1 Quelle
Apple accuses OpenAI of destroying evidence as trade-secrets fight intensifies
1 Quelle
Major AI platforms go down in unprecedented simultaneous outage
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Laravel Under The Hood - A Little Bit of Macros

Thematisch verwandte Begriffe: Laravel, Under, Hood, Little · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...