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

Products

@include('admin.message')
@if (count($products) > 0) @foreach ($products as $product) @php $productImage = $product->Product_Image->first(); @endphp @endforeach @else @endif
ID Product Price Qty SKU Status Action
{{ $product->id }} @if (!empty($productImage->image)) @else @endif {{ $product->title }} {{ $product->price }} {{ $product->qty }} {{ $product->sku }} @if ($product->status == 1) @else @endif

Records not Found

@endsection @section('customJs') @endsection