| 123456789101112131415161718192021222324252627282930 |
- @extends('layouts.app')
- @section('content')
- <div class="row mb-3">
- <div class="col-6">
- <h3>Рекламации</h3>
- </div>
- <div class="col-6 text-end">
- </div>
- </div>
- @include('partials.table', [
- 'id' => $id,
- 'header' => $header,
- 'strings' => $reclamations,
- 'routeName' => 'reclamations.show',
- 'routeParam' => 'reclamation',
- ])
- @include('partials.pagination', ['items' => $reclamations])
- @if($errors->count())
- @dump($errors)
- @endif
- @endsection
|