@extends('layouts.app')
@section('content')
@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