index.blade.php 668 B

12345678910111213141516171819202122
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="row mb-2">
  4. <div class="col-md-6">
  5. <h3>Договоры</h3>
  6. </div>
  7. <div class="col-md-6 text-end">
  8. <a href="{{ route('contract.create', ['nav' => $nav ?? null]) }}" class="btn btn-sm btn-primary">Добавить</a>
  9. </div>
  10. </div>
  11. @include('partials.table', [
  12. 'id' => $id,
  13. 'header' => $header,
  14. 'strings' => $contracts,
  15. 'routeName' => 'contract.show',
  16. 'routeParam' => 'contract',
  17. 'nav' => $nav ?? null,
  18. ])
  19. @include('partials.pagination', ['items' => $contracts])
  20. @endsection