@extends('layouts.app') @section('title') Comptes @endsection @section('page-title') Comptes Gestion @endsection @section('button-top') Créer un compte @endsection @section('content')
{!! Form::open(array('route' => 'comptes.make_index_actions', 'method'=>'POST')) !!} @if (count($comptes)) @foreach ($comptes as $compte) @endforeach @else @endif
# Compte Actif Consultations Propositions Votes Date de fin Gestion
{!! displayCheckbox([ 'label' => '', 'name' => 'compte_ids[]', 'value' => $compte->id, 'checkbox_only' => true, 'class' => 'action_compte' ]) !!} {{ $compte->id }} {{ $compte->name }} {!! $compte->is_active ? ' Actif' : ' Inactif' !!} {{ count($compte->consultations) }} {{ $compte->count_propositions }} {{ $compte->count_votes_total }} @if ($compte->date_end_subscription) {{ $compte->date_end_subscription->format('YmdHis') }}Le {{ $compte->date_end_subscription->format('d/m/Y \à H\hi') }} @else - @endif @if ($compte->id != Auth::user()->selectedCompte->id) @endif
Aucun compte
Créer un compte
{!! Form::close() !!} @foreach ($comptes as $compte) @include('comptes.delete_modal', ['compte' => $compte]) @endforeach
@endsection