@extends('frontend.dashboard_master') @section('main') @section('title') Vendors Details @endsection

{{ $vendor->name }}

We found {{ count($vproduct) }} items for you!

@foreach ($vproduct as $product) @php // persntage $discount = ($product->discount_price/$product->selling_price) * 100; @endphp
@if ($product->discount_price == NULL) New @else {{round($discount)}}% @endif

{{$product->product_name}}

(3.5)
@if ($product->vendor_id == NULL) By Admin @else By {{$product->vendor->name}} @endif
@php // persntage $amountAfterDiscount = $product->selling_price - $product->discount_price; @endphp @if ($product->discount_price == NULL)
${{$product->selling_price}}
@else
${{$amountAfterDiscount}} ${{$product->selling_price}}
@endif
@endforeach
@endsection