@extends('layouts.dashboard') @section('stylesheets') {!! Html::style('https://cdn.datatables.net/1.10.16/css/jquery.dataTables.css') !!} {!! Html::style('css/parsley.css') !!} {!! Html::style('assets/global/plugins/select2/css/select2.min.css') !!} {!! Html::style('assets/global/plugins/select2/css/select2-bootstrap.min.css') !!} @endsection @section('content')
@forelse ($users as $user) @empty

Aucun utilisateur trouvé

@endforelse
Nom Téléphone Email Ville Etat Actions
{{ $user->full_name }} {{ $user->phone }} {{ $user->email }} {{ $user->city }} {!! $user->active !!}
@endsection @section('scripts') {!! Html::script('https://cdn.datatables.net/1.10.16/js/jquery.dataTables.js') !!} {!! Html::script('js/custom-script.js') !!} {!! Html::script('js/parsley.min.js') !!} {!! Html::script('js/fr.js') !!} {!! Html::script('assets/global/plugins/select2/js/select2.full.min.js') !!} @endsection