@extends('Admin.layout.app') @section('content')
@if(session('success'))
{!! session('success') !!}
@endif
List of Vendors
@foreach($vendorlist as $item) @endforeach
# Name Contact Person Contact Number Email Created At Updated At Action
{{$loop->iteration}} {{($item->name)?ucwords($item->name):''}} {{($item->contactPerson)?ucwords($item->contactPerson):''}} {{($item->contactNumber)?ucwords($item->contactNumber):''}} {{($item->email)?$item->email:''}} {{date('d/F/Y',strtotime($item->created_at))}} {{date('d/F/Y',strtotime($item->updated_at))}}
@csrf @method('DELETE')
{{ $vendorlist->links() }}
@endsection