@extends('layouts.base') @section('content') @section('breadcrumb') @endsection
@if ($errors->any()) @endif
{{ Str::of($application->name)->substr(0,1) }}

{{ $application->name }}

{{ $application->slug }} @if($application->is_active) Actif @else Inactif @endif

Retour
@csrf @method('PUT')
Partager les programmes avec d'autres applications

Sélectionnez les applications avec lesquelles {{ $application->name }} partagera ses programmes.

@if($availableApplications->isEmpty())
Aucune autre application disponible pour le partage.
@else
@foreach($availableApplications as $availableApp)
sharedApplications->contains($availableApp->id) ? 'checked' : '' }} class="fiscalite-checkbox sharing-app-checkbox">
@endforeach
{{ $application->sharedApplications->count() }} application(s) sélectionnée(s)
@endif
Partages actuels
@if($application->sharedApplications->count() > 0)
    @foreach($application->sharedApplications as $shared)
  • {{ Str::of($shared->name)->substr(0,1) }}
    {{ $shared->name }}
    {{ $shared->slug }}
  • @endforeach
@else

Aucun partage configuré

@endif
Reçoit des partages de
@if($application->sharedByApplications->count() > 0)
    @foreach($application->sharedByApplications as $shared)
  • {{ Str::of($shared->name)->substr(0,1) }}
    {{ $shared->name }}
    {{ $shared->slug }}
  • @endforeach
@else

Aucun partage reçu

@endif
Annuler

Information
Les programmes de {{ $application->name }} seront visibles dans les applications sélectionnées.
@endsection