@extends('admin.layouts.app') @section('title', 'All Products') @push('styles') @endpush @section('admin_content') @php $countDeletedData = App\Models\Product::onlyTrashed()->get(); @endphp
@foreach ($products as $key=>$product) @endforeach
S/N Image Name Stock Qty Purchase Price Sales Price Status Action
{{$key+1 }} {{ $product->product_name }} {{ $product->stock_quantity }} {{ $product->purches_price }} {{ $product->selling_price }} @if($product->is_active == 1) Active @else Inactive @endif visibility edit
@csrf @method('DELETE')
@endsection @push('scripts') @endpush