@extends('admin.layouts.resource-layout') @section('title')

Мерчанты

@endsection @section('resource-content')
Создать @foreach ($items as $item) @endforeach
@sortablelink('id', 'ID') @sortablelink('name', 'Имя') @sortablelink('merchantId', 'Merchant Id') @sortablelink('warehouseId', 'ID Склада') @sortablelink('address', 'Адрес') Действия
{{ $item->id }} {{ $item->name }} {{ $item->merchantId }} {{ $item->warehouseId }} {{ $item->address }} @can('handbooks-destroy')
{{ csrf_field() }} {{ method_field('DELETE') }}
@endcan
{{ $items->appends(request()->all())->links() }}
@endsection