From 49c8c7e3e9280f0308151f25b131d4d612c98fe5 Mon Sep 17 00:00:00 2001 From: Alies Lapatsin Date: Fri, 2 Aug 2024 13:16:24 +0200 Subject: [PATCH] Use a better term --- library/backend/conventions--laravel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/backend/conventions--laravel.md b/library/backend/conventions--laravel.md index 6383d6b..9f032a3 100644 --- a/library/backend/conventions--laravel.md +++ b/library/backend/conventions--laravel.md @@ -68,7 +68,7 @@ Such communication possible using: Don’t use Facade root aliases (comment out `Facade::defaultAliases()->merge([...])`): it’s extra magic that’s easy to avoid. Exceptions: -- `\Vite` alias for `\Illuminate\Support\Facades\Vite` (why: there are no helper alternatives for `Vite::asset()` that is commonly used in Blade views) +- `\Vite` alias for `\Illuminate\Support\Facades\Vite` (why: there are no short alternatives for `Vite::asset()` that is commonly used in Blade views) ## Eloquent and Database