@extends('layouts.app') @section('title', 'Vendors') @section('content')
@if($vendors->count() > 0) @foreach($vendors as $vendor) @endforeach
@else
There are currently no vendors to show for this community.
@endif
@endsection