@extends('layouts.app') @section('content')

Add Vendors

@csrf
@foreach ($productvendors as $vendor) @endforeach
id Vendor Product price Location Selling to Action
{{ $vendor->id }} {{ $vendor->username }} {{ $vendor->productname }} {{ $vendor->price }} {{ $vendor->location }} {{ $vendor->type }} {!! Form::open(['route' => ['deleteproduct', ], 'method' => 'post']) !!}
{!! Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')", ]) !!}
{!! Form::close() !!}
@endsection