@extends('layouts.app') @section('content')
@if($client->is_company==0)
{{__('texte.clients_arr.show.company_name')}}: {{ $client->name }}
@else
{{__('texte.clients_arr.show.name')}}: {{ $client->name }}
{{__('texte.clients_arr.show.pic')}}: {{ $client->mol }}
{{__('texte.clients_arr.show.address')}}: {{ $client->address }}
@endif @if($client->foreign_client==0)
{{__('texte.clients_arr.show.country')}}: {{ $client->location->area->country->name }}
{{__('texte.clients_arr.show.area')}}: {{ $client->location->area->name }}
{{__('texte.clients_arr.show.location')}}: {{ $client->location->name }}
@else
{{__('texte.clients_arr.show.country')}}: {{ $client->foreign_country }}
{{__('texte.clients_arr.show.location')}}: {{ $client->foreign_location }}
@endif @if($client->is_company==1)
{{__('texte.clients_arr.show.bulstat')}}: {{ $client->bulstat }}
@if($client->have_vat==1)
{{__('texte.clients_arr.show.vat')}}: {{ $client->vat }}
@endif @endif
{{__('texte.clients_arr.show.mobile')}}: {{ $client->mobile }}
{{__('texte.clients_arr.show.phone')}}: {{ $client->phone }}
{{__('texte.clients_arr.show.email')}}: {{ $client->email }}
{{__('texte.clients_arr.show.active')}}: {{ $client->active==1 ? __('texte.clients_arr.show.yes') : __('texte.clients_arr.show.no') }}
@endsection