Mahmoud Alrashidi نشر 10 مارس 2021 أرسل تقرير نشر 10 مارس 2021 أنا استخدم View Composer لتمرير بعض البيانات إلى صفحة master layout لكنها لا تنقل شيء لصفحة العرض ماهي المُشكلة: View::composer('layouts.dashboard.master', function($view){ $userNoteRepository = resolve(UserNoteRepositoryInterface::class); $current_user_notification = $userNoteRepository->getCurrentUserAlertNotifications(); $current_user_notification_count = count($userNoteRepository->getCurrentUserAlertNotifications()); $view->with('current_user_notification', 'current_user_notification_count'); }); 1 اقتباس
1 سمير عبود نشر 10 مارس 2021 أرسل تقرير نشر 10 مارس 2021 أعتقد أن المُشكلة في جزء with يجب أن تكون بهذا الشكل: $view->with([ 'current_user_notification' => $current_user_notification, 'current_user_notification_count' => $current_user_notification_count ]); ليُصبح الكود ككل بهذا الشكل: <?php View::composer('layouts.dashboard.master', function($view){ $userNoteRepository = resolve(UserNoteRepositoryInterface::class); $current_user_notification = $userNoteRepository->getCurrentUserAlertNotifications(); $current_user_notification_count = count($userNoteRepository->getCurrentUserAlertNotifications()); $view->with([ 'current_user_notification' => $current_user_notification, 'current_user_notification_count' => $current_user_notification_count ]); }); 1 اقتباس
السؤال
Mahmoud Alrashidi
أنا استخدم View Composer لتمرير بعض البيانات إلى صفحة master layout لكنها لا تنقل شيء لصفحة العرض ماهي المُشكلة:
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.