我如何 运行 查询并在 laravel 背包中显示结果?
How can I run a query and show the result in laravel backpack?
我有 3 张桌子。
Table Student : id , name
Table question : id , question , choice1,choice2, correctChoice,questionPoint
Table StudentAnswer: id, student_id,question_id,choice
我想根据学生的答案来衡量学生的分数,并将结果显示在背包中学生姓名的右侧laravel。 laravel 背包有可能吗?
我知道我可以使用查询来衡量学生分数,但我想知道如何在 laravel 背包中显示结果?
可扩展站点的最佳解决方案是什么?
谢谢
只要你不需要按那个计算出的属性来排序table,我建议你在学生模型上使用一个函数来return点基。
然后您将能够使用 Backpack 中的 model_function 列类型显示该功能 - https://backpackforlaravel.com/docs/3.5/crud-columns#model_function
我有 3 张桌子。
Table Student : id , name
Table question : id , question , choice1,choice2, correctChoice,questionPoint
Table StudentAnswer: id, student_id,question_id,choice
我想根据学生的答案来衡量学生的分数,并将结果显示在背包中学生姓名的右侧laravel。 laravel 背包有可能吗? 我知道我可以使用查询来衡量学生分数,但我想知道如何在 laravel 背包中显示结果? 可扩展站点的最佳解决方案是什么? 谢谢
只要你不需要按那个计算出的属性来排序table,我建议你在学生模型上使用一个函数来return点基。
然后您将能够使用 Backpack 中的 model_function 列类型显示该功能 - https://backpackforlaravel.com/docs/3.5/crud-columns#model_function