Most voted "lucid" questions
3 questions
Sort by count of
-
1
votes1
answer135
viewsWhat is the difference between "merge" and "Fill" in Adonisjs' Lucid?
I have several years of experience with Laravel and am taking a look at the Adonisjs framework. It is very similar to the Laravel in several points, but specifically I’m having a doubt regarding the…
-
0
votes2
answers85
viewsHow to select records that do not have relationships in a table in Node/Adonis?
I have three tables: students ------------ id INT name VARCHAR class ----------- id INT description VARCHAR student_classes -------- id INT student_id (FOREIGN KEY of students.id) class_id (FOREIGN…
-
0
votes0
answers16
viewsI am unable to return complete data with adonisjs
Code of the Model 'use strict' const honorarios = require('../Metodos/honorarios') /** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */ const Model = use('Model') class ControleHonorario…