@extends('layouts/contentNavbarLayout') @section('title', 'Договоры') @section('content')
Договоры
@foreach ($contracts as $contract) @endforeach
Название Действует с Действует по Статус Валюта
{{$contract['number']}} {{$contract['name']}} {{date('d.m.Y', strtotime($contract['date']))}} {{isset($contract['date_before']) ? date('d.m.Y', strtotime($contract['date_before'])) : ''}} {{$contract['status']}} {{$contract['currencies'] ?? 'Рубль'}}

@include('layouts/pagination', [ 'pages' => $pages, 'page' => $page ])
@endsection