@extends('layouts.app') @section('title', __('ui.vendors.title')) @section('content')

{{ __('ui.vendors.title') }}

{{ __('ui.vendors.add_vendor') }}
@forelse($vendors as $vendor) @empty @endforelse
{{ __('ui.common.name') }} {{ __('ui.common.phone') }} {{ __('ui.common.address') }} {{ __('ui.common.actions') }}
{{ $vendor->name }} {{ $vendor->phone ?? '—' }} {{ Str::limit($vendor->address, 40) ?? '—' }} {{ __('ui.common.view') }} {{ __('ui.common.edit') }}
@csrf @method('DELETE')
{{ __('ui.vendors.empty') }} {{ __('ui.common.add_one') }}.
@if($vendors->hasPages())
{{ $vendors->links() }}
@endif
@endsection