Back to Snipe It

Views

.ai/rules/views.md

8.7.0549 B
Original Source

Views

Use trans(), never __()

Translate with trans('general.some_key') using short dotted keys from resources/lang/<locale>/. Never use __() — it appears nowhere in this codebase. Add a new key rather than hard-coding English.

Blade composition: layouts plus anonymous components

Pages @extends a layout. Reusable markup is an anonymous Blade component: a file in resources/views/components/ declaring @props([...]), used as <x-name />.

Do not create class-based components — there is no app/View/Components directory.