@extends('layouts.user-profile') @section('subtitle', trans('user.marriages')) @section('user-content')
@foreach ($marriages as $marriage)
@if ($marriage->divorce_date) @endif {{-- --}}
{{ trans('couple.husband') }}{{ $marriage->husband->profileLink() }}
{{ trans('couple.wife') }}{{ $marriage->wife->profileLink() }}
{{ trans('couple.marriage_date') }}{{ $marriage->marriage_date }}
{{ trans('couple.divorce_date') }}{{ $marriage->divorce_date }}
{{ trans('couple.childs_count') }}{{ $marriage->childs_count }}
{{ trans('couple.grand_childs_count') }}?
@endforeach
@endsection