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

Vendors

Add New Vendor
@csrf
Vendor List
@forelse($vendors as $vendor) @empty @endforelse
Name Description Status Actions
{{ $vendor->name }} {{ \Illuminate\Support\Str::words($vendor->description ?? '', 10, '...') }}
status ? 'checked' : '' }} >
No vendor found!
{{ $vendors->links() }}
@endsection @section('modal') @endsection @section('script') @endsection