@extends('admin.layout.layout') @section('content')
{{--

Hi {{Auth::guard('admin')->user()->last_name }}

--}}

Products & Services

{{-- Add Category --}} @if (Session::has('success_message')) @endif {{-- --}} @foreach($products as $product) {{-- --}} @endforeach
S/NNameTitle Price Section Category Vendor Phone no. Paid Details Status Update Action
{{ $loop->iteration }}{{ $product['product_name'] }}{{ $product->title }} ₦{{ number_format($product->price, 2) }} {{ $product->section->name ?? ""}} {{ $product->category->category_name ?? ""}} {{ $product->vendor->first_name ?? "" }} {{ $product->vendor->last_name ?? ""}} {{ $product->vendor->mobile ?? ""}} @if ($product->status == 1) {{ "yes" }} @else {{ "no" }} @endif @if ($product->status == 1) @else @endif {{-- --}}
@endsection