إذا كنا غير متأكدين من أن ملف blade موجود بالإمكان الإستعاة بأحد الشروط التالية
سيتم تحميل ملف الهيدر إذا كان ملف blade موجود
@includeIf('partials.header')
سيتم تحميل الهيدر فقط إذا كانت role=1
@includeWhen(auth()->user()->role_id == 1, 'partials.header')
اذا كان ملف adminlte.header واذا كان غير موجود يتم تحميل ملف default.header
@includeFirst('adminlte.header', 'default.header')