@extends('layouts.app') @section('content')
Personne Morale @if(!empty($tiers->id_tiers)): {{$tiers->id_tiers}}@endif
{{$tiers->nom_tiers}} @if($tiers->prenom_tiers)({{$tiers->prenom_tiers}})@endif
@php $groups = [ 1=>"Informations principales", 2=>"Autres informations" ]; @endphp @foreach($groups as $key=>$group)
{{$group}}
@foreach ($fields as $name => $attribues) @php $attribue_group = !empty($attribues->group)? $attribues->group : null @endphp @if($attribue_group == $key)
{{ !empty($attribues->label) ? $attribues->label : $name }} @switch($attribues->type) @case('date') {{(new DateTime($attribues->value))->format('d/m/Y')}} @break @case('select') {{ $attribues->value }} : @if(key_exists($attribues->value,$attribues->options)) {{$attribues->options[$attribues->value]}} @endif @break @default {{$attribues->value}} @endswitch
@endif @endforeach
@endforeach
@endsection