0
Sorry I wouldn’t experience in Latin, I’m starting the studies and need to consult a Mysql table according to the value of another table ex.:
Tabela Sessões
| id | nome |
| 1 | João |
| 2 | Fabio |
| 3 | Maria |
Tabela Produtos
| id | sessao_id | nome |
| 1 | 1 | Computador |
| 2 | 1 | Televisor |
| 3 | 2 | Carro |
Model Sessões
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Produtos;
class Sessoes extends Model
{
protected $id = 'id';
public function produtos(){
return $this->hasMany(Produtos::class);
}
}
Controller
namespace App\Http\Controllers\Site;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Models\Categoria;
use App\Models\Sessoes;
use App\Models\Produtos;
class SiteController extends Controller
{
public function listaProdutos(){
$idsessao = Sessoes::where('id', '2')->get()->first();
$produtos = $idsessao->produtos;
foreach ($produtos as $prod) {
echo $prod->nome;
}
}
}
Where I might be missing or failing to do something?
This returning me the following error
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'produtos.sessoes_id' in 'Where clause' (SQL: select * from produtos
Where produtos
.sessoes_id
= 2 and produtos
.sessoes_id
is not null)
Thank you very much.
If you don’t explain the mistake, we won’t know what you’re missing.
– Gabriel Heming
Edited with error return
– Cristiano Facirolli