@extends('_partials.master') @section('page_title', 'Vendors') @section('page_heading', 'Vendors') @section('page_styles') @endsection @section('content')

List all Vendors

@foreach($vendors as $vendor) @endforeach
ID Name User Created Date Actions
{{ $vendor->id }} {{ $vendor->name }} {{ $vendor->user_id ?? '-' }} {{ $vendor->created_at->format('d/m/Y') }} {!! Form::open(array( 'route' => array('vendor.delete', $vendor->id), 'method' => 'delete', 'class'=>'delSwalForm', 'style'=>'display:inline' )) !!} Edit {!! Form::close() !!}
@stop @push('page_scripts') @endpush