في Laravel كل متحكم controller سيحتوي على ['heading['panelText$.
كمثال:
public function pageName1()
{
$heading['panelText'][] = "Content Here one";
$heading['panelText'][] = "Content Here Two";
$heading['panelText'][] = "Content Here Three";
return View('mockup/pagename1', compact('heading'));
}
public function pageName2()
{
$heading['panelText'][] = "Some Random one";
$heading['panelText'][] = "Some Random Line Two";
return View('mockup/pagename2', compact('heading'));
}
في ملف الواجهة blade، سيكون الكود كالتالي:
@foreach($heading['panelText'] as $content)
<p>{{$content}}</p>
@endforeach
ما احتاجه هو طريقة لاستعمال ['heading['panelText$ داخل المتحكم Controller، هل سأحتاج إنشاء مكتبة لفعل ذلك؟
السؤال
Badraoui
في Laravel كل متحكم controller سيحتوي على ['heading['panelText$.
كمثال:
في ملف الواجهة blade، سيكون الكود كالتالي:
ما احتاجه هو طريقة لاستعمال ['heading['panelText$ داخل المتحكم Controller، هل سأحتاج إنشاء مكتبة لفعل ذلك؟
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.