index.blade.php 585 B

123456789101112131415161718192021222324252627282930
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="row mb-3">
  4. <div class="col-6">
  5. <h3>Рекламации</h3>
  6. </div>
  7. <div class="col-6 text-end">
  8. </div>
  9. </div>
  10. @include('partials.table', [
  11. 'id' => $id,
  12. 'header' => $header,
  13. 'strings' => $reclamations,
  14. 'routeName' => 'reclamations.show',
  15. 'routeParam' => 'reclamation',
  16. ])
  17. @include('partials.pagination', ['items' => $reclamations])
  18. @if($errors->count())
  19. @dump($errors)
  20. @endif
  21. @endsection