Goodmorningperson.
IcreatedasearchthatreturnstherequestsandwhenIclickopenstheproductsofthatrequest.ButIcannotmaketheproductsappearasastring,onlyinarrayformatasintheimage.DoesanyoneknowwhatI'vedonewrong?
MODELREQUEST
publicfunctionproduto(){return$this->belongsToMany(Produto::class,'solicitacaodet');}
PRODUCTMODEL
publicfunctionsolicitacao(){return$this->belongsToMany(Solicitacao::class,'solicitacaodet');}
CONTROLLHER
publicfunctioncreate(){//if(Gate::denies('equipamento-create')){//returnview('admin._msg');//}$solicitacoes=Solicitacao::All();$pessoas=DB::table('pessoasolcompvend')->where('solicitante','=','s')->orderby('pessoa')->get();$unidades=DB::table('unidadeadm')->orderby('unidadeadm')->get();$localentrega=DB::table('localentrega')->orderby('localentrega','asc')->get();$caminhos=[['url'=>'/home','titulo'=>'Inicio'],['url'=>route('pedidocompra.index'),'titulo'=>'PedidodeCompra'],['url'=>'','titulo'=>'Create'],];returnview('compra.pedidocompra.create',compact('solicitacoes','detalhes','pessoas','unidades','localentrega','produtos','centrocustos','caminhos'));}
VIEW
Solicitation Date
<?phpforeach($solicitacoesas$solicitacao){?><trstyle="background-color: #e1e1e1;color: black">
<td id="id"><a href="#"><?php echo $solicitacao->idsolicitacao?></a></td>
<td><?php echo date('d/m/Y', strtotime($solicitacao->data))?></td>
</tr>
<tr>
<td colspan="2">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th></th>
<th>Id</th>
<th>Produto</th>
<th>Qnt</th>
<th>Detalhe</th>
</tr>
</thead>
<tbody>
<?php
$detalhes = $solicitacao->solicitacaodet;
$produtos = $solicitacao->produto;
$centrocusto = $solicitacao->centrocusto;
?>
<?php foreach ($detalhes as $detalhe){?>
<tr>
<td>
<input type="checkbox" />
</td>
<td><?php echo $detalhe->produto_idproduto ?></td>
<td>
<?php
echo $detalhe->produto()->select('produto')->get();
// echo $produto->produto
?>
</td>
<td><?php echo $detalhe->qnt ?></td>
<td><?php echo $detalhe->detalhe ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>