@extends('admin') @section('title') NotaireApp - Modifier Dossier @endsection @section('content') @section('menu-title') @endsection

Modifier Dossier N° {{ $dossier->num_dossier }} :

{{ csrf_field() }}

Ajouter une propriéte

mainlevee == 1 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-chris-evans" name="mainlevee" value="1">
mainlevee == 0 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-liam-neeson" name="mainlevee" value="0">
qfiscale == 1 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-chris-evans" name="qfiscale" value="1">
qfiscale == 0 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-liam-neeson" name="qfiscale" value="0">
hypotheque == 1 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-chris-evans" name="hypotheque" value="1">
hypotheque == 0 ? 'checked' : '' }} type="radio" class="input border mr-2" id="horizontal-radio-liam-neeson" name="hypotheque" value="0">
credit == 1 ? 'checked' : '' }} type="radio" class="input border mr-2 credit" id="horizontal-radio-chris-evans" name="credit" value="1">
credit == 0 ? 'checked' : '' }} type="radio" class="input border mr-2 credit" id="horizontal-radio-liam-neeson" name="credit" value="0">

@if ($dossier->credit == 1)
@else @endif

Ajouter les clients et les vendeurs

@foreach ($acheteurs as $acheteur)
{{ $acheteur->type == 0 ? $acheteur->raisonsocial : $acheteur->name . ' ' }}
@endforeach
@foreach ($vendeurs as $vendeur)
{{ $vendeur->type == 0 ? $vendeur->raisonsocial : $vendeur->name . ' ' }}
@endforeach

Étape du dossier

Ajouter des pièces jointes

Les piéces jointes

@forelse ($fichiers as $fichier)
{{ $fichier->file_name }}
{{ $fichier->nom_fichier }}

@empty

Il n'y a pas encore des fichiers pour ce client.

@endforelse

Les piéces jointes de client

@forelse ($fichiers_clients as $fichier)
{{ $fichier->file }}
{{ $fichier->nom_fichier }}

@empty

Il n'y a pas encore des fichiers pour ce client.

@endforelse

Les piéces jointes de propriétés

@forelse ($file_prop as $fichier)
{{ $fichier->file_name }}
{{ $fichier->nom_fichier }}

@empty

Il n'y a pas encore des fichiers pour ce client.

@endforelse
@endsection @section('script') @endsection