لارافيل, Blade / 2024-05-14

Blade Directives: IncludeIf, IncludeWhen, IncludeFirst

Blade Directives: IncludeIf, IncludeWhen, IncludeFirst

2024-05-14 وقت القراءه : أقل من دقيقة

إذا كنا غير متأكدين من أن ملف blade موجود بالإمكان الإستعاة بأحد الشروط التالية

سيتم تحميل ملف الهيدر إذا كان ملف blade موجود

@includeIf('partials.header')

سيتم تحميل الهيدر فقط إذا كانت role=1

@includeWhen(auth()->user()->role_id == 1, 'partials.header')

اذا كان ملف adminlte.header واذا كان غير موجود يتم تحميل ملف default.header

@includeFirst('adminlte.header', 'default.header')
إضافة تعليق
Loading...