From 1839e1946a76f1c8a0fb13484e948d2f9847cfaa Mon Sep 17 00:00:00 2001 From: Ahmed Alaa Date: Sat, 19 Apr 2025 21:39:52 +0200 Subject: [PATCH] Use consistent Blade syntax highlighting for @use directive examples --- blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blade.md b/blade.md index acf37a67f3..33d94d1275 100644 --- a/blade.md +++ b/blade.md @@ -648,7 +648,7 @@ Or, if you only need to use PHP to import a class, you may use the `@use` direct A second argument may be provided to the `@use` directive to alias the imported class: -```php +```blade @use('App\Models\Flight', 'FlightModel') ```