@extends('layouts.app') @section('title', __('vendor.list')) @section('content')
| {{ __('app.table_no') }} | {{ __('vendor.name') }} | {{ __('app.notes') }} | {{ __('app.action') }} |
|---|---|---|---|
| {{ $vendors->firstItem() + $key }} | {{ $vendor->name }} | {{ $vendor->notes }} | {{ link_to_route('vendors.show', __('app.show'), $vendor) }} | {{ link_to_route( 'vendors.index', __('app.edit'), ['action' => 'edit', 'id' => $vendor->id] + request(['page', 'q']), ['id' => 'edit-vendor-' . $vendor->id] ) }} |