@extends('layouts.admin') @section('content')

Product Page

@foreach ($products as $item) @endforeach
Id Category Brand Name Product Code SKU Price In Stock Image Action
{{ $item->id }} {{ $item->category->name }} {{ $item->brand->name }} {{ $item->name }} {{ $item->product_code }} {{ $item->sku }} {{ $item->price }} {{ $item->in_stock }} @foreach($item->images as $image) Image Not Found @endforeach Edit Delete
@endsection