Posts by Mateus Junges • 126 points
2 posts
-
0
votes1
answer263
viewsA: How to display Data in datatables in the Laravel with related tables
The easiest way is to create a view in your database. Create an Migration to create the view: php artisan make:migration create_view_alunos_professores_disciplinas -m The flag -m also creates the…
-
1
votes1
answer505
viewsA: How can I list 3 tables using Laravel
Just make the following Relations: In the collaborating model: class Colaborador extends Model { protected $table = "colaboradores"; public function user() { return $this->belongsTo(User::class,…