@extends('admin_pages_master') @section('content')
@if($products->count() > 0)
@if (Session::has('success_message')) @endif @foreach($products as $product) @endforeach
S/N Title Price Section Category Phone no. Paid Actions Status
{{ $loop->iteration }} {{ $product->title }} ₦{{ number_format($product->price, 2) }} {{ $product->section->name ?? ""}} {{ $product->category->category_name ?? ""}} {{ $product->vendor->mobile ?? ""}} @if ($product->status == 1) {{ "yes" }} @else {{ "no" }} @endif @if ($product->status == 1) Active @else Inactive @endif
@else

No products found.

@endif
@endsection