Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $return = AppCliente::find($id)->with('atividadesComerciais')->get();
  2. return view('clientes.show', ['data'=>$return]);
  3.  
  4. public function atividadesComerciais()
  5. {
  6. return $this->belongsTo('AppAtividadesComerciais', 'atividades_comerciais_id', 'id');
  7. }
  8.  
  9. {{ $data['razao_nome'] }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement