@extends('admin.layouts.master') @section('title', 'Products Log') @section('css') @endsection @section('content')

Products Log

Seach Prodcuts
to
Products List
@foreach ($order_details as $key => $product_detail) @endforeach
# Image Name Cost Price Sale Price Order Quantity Product Quantity (now) Status Visibility Date
{{ ++$key }}
@if ($product_detail->product->is_featured == 1) Featured @else UnFeatured @endif
{{ $product_detail->product->sku }}
{{ $product_detail->product->cost_price ?? 'NULL' }} {{ $product_detail->price }} {{ $product_detail->quantity }} {{ $product_detail->product->quantity }} {{ str_replace('_', ' ', $product_detail->order->status ?? null) }} @if ($product_detail->product->is_featured == 1) Featured @else UnFeatured @endif {{ $product_detail->created_at->format('d M, Y') }}
@endsection @section('js') @endsection