@extends('layouts.master') @section('title', 'Comptes') @section('content')

@yield('title')

@if (Session::get('success'))
{{ Session::get('success') }}
@endif
@if ($comptes->count() > 0)
@foreach ($comptes as $key => $compte) @endforeach
# Nom Username Statut Action
{{ $key + 1 }} {{ $compte->name }} {{ $compte->email }} @if ($compte->is_active == 1) Actif @else Non actif @endif
@else
@endif
@endsection