| 1234567891011121314151617181920212223242526272829303132 |
- @extends('layouts.app')
- @section('content')
- <div class="row mb-2">
- <div class="col-md-6">
- <h3>Рекламации</h3>
- </div>
- <div class="col-md-6 text-end">
- @if(hasRole('admin'))
- <a href="#" class="btn btn-sm btn-primary" onclick="$('#export-reclamations').submit()">Экспорт</a>
- @endif
- </div>
- </div>
- @if(hasRole('admin'))
- <form class="d-none" method="post" action="{{ route('reclamations.export') }}" id="export-reclamations">
- @csrf
- </form>
- @endif
- @include('partials.table', [
- 'id' => $id,
- 'header' => $header,
- 'strings' => $reclamations,
- 'routeName' => 'reclamations.show',
- 'routeParam' => 'reclamation',
- ])
- @include('partials.pagination', ['items' => $reclamations])
- @endsection
|