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

Product Page

add_circle
Add Product
{{-- Filter and Search Form --}}
Reset
{{-- Product Table --}}
@foreach ($products as $item) @endforeach
Id Category Brand Name Product Code SKU Regular Price Sale Price In Stock Image Action
{{ $item->id }} {{ $item->category->name }} {{ $item->brand->name }} {{ $item->name }} {{ $item->product_code }} {{ $item->sku }} {{ $item->old_price }} {{ $item->price }} {{ $item->in_stock }} @foreach($item->images as $image) Image Not Found @endforeach Edit Delete
{{-- Pagination Links --}}
@endsection