@extends('layouts.app') @section('title', 'Vendors') @section('content')

My Vendors

Create Vendor @if($vendors->count() > 0) @foreach($vendors as $vendor) @endforeach
Name Location Actions
{{ $vendor->name }} {{ $vendor->city }}, {{ $vendor->state }} {{ $vendor->country }} View Edit
@else
You currently have no vendors to display.
@endif
@endsection @push('styles') @endpush