@extends('layouts.app') @section('link') @endsection @section('style') @endsection @section('content')
@include('shared.messages')

{{__('texte.representatives_arr.objects.index.representative')}}

{{__('texte.representatives_arr.objects.index.name')}}: {{ $representative->name }}
{{__('texte.representatives_arr.objects.index.mobile')}}: {{ $representative->mobile }}
{{__('texte.representatives_arr.objects.index.email')}}: {{ $representative->email }}
{{__('texte.representatives_arr.objects.index.active')}}: {{ $representative->active == 1 ? __('texte.representatives_arr.objects.index.yes') : __('texte.representatives_arr.objects.index.no') }}
{{__('texte.representatives_arr.objects.index.representative_objects')}}
{{ csrf_field() }}
@foreach($representative_objects as $representative_object) @endforeach
{{strtoupper(__('texte.representatives_arr.objects.index.id'))}} {{__('texte.representatives_arr.objects.index.type')}} {{__('texte.representatives_arr.objects.index.subtype')}} {{__('texte.representatives_arr.objects.index.contragent')}} {{__('texte.representatives_arr.objects.index.object')}} {{__('texte.representatives_arr.objects.index.delivery_address')}}
{{$representative_object->id}} {{$representative_object->subtype->type->name}} {{$representative_object->subtype->name}} {{$representative_object->contragent->company_name ?? $representative_object->contragent->user->name}} {{$representative_object->user->name}} {{$representative_object->delivery_address}}
@endsection