this is my Model
//relation from model products to model categorys
public function categorys()
{
return $this->belongsTo('App\Category');
}
//relation from model products to model categorys
public function categorys()
{
return $this->belongsTo('App\Category');
}
this is my controller
public function index()
{
//controller buat manggil foreachnya
$data['title'] ='Product';
$data['page'] = 'Semua Product';
$data['products'] = Product::all();
return view('backend.product.index', $data);
}
**this is my **
@foreach($products->categorys as $key => $value)
<tr>
<!-- view bladenya -->
<td></td>
<td></td>
<td></td>
I am trying to using $products->$categorys but its gone wrong
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire