@extends('layouts.master') @section('sidebar') @parent

This is appended to the master sidebar.

@stop @section('content')

Zero Configuration

DataTables has most features enabled by default, so all you need to do to use it with your own tables is to call the construction function: $().DataTable();. You can refer full documentation from here Datatables
@if(empty($elements))

@endif @if(!empty($elements)) @foreach($elements as $element) @endforeach @endif
Element Model Numéro Série Localisation Statut Utilisateur Action
{{$element['element']}} {{$element['model']}} {{$element['uid']}} {{$element['localisation']}} @if($element['elementstatus'] == "NEW")

Neuf

@endif @if($element['elementstatus'] == "FREE")

Disponible

@endif @if($element['elementstatus'] == "IN_USE")

En utilisation

@endif @if($element['elementstatus'] == "MAINTENANCE")

En Maintenance

@endif @if($element['elementstatus'] == "DEFECTIVE")

Deffectué

@endif
{{$element['fullname']}} @if($element['elementstatus'] == "NEW" || $element['elementstatus'] == "FREE") Assigner @endif @if($element['elementstatus'] == "IN_USE") Récupérer @endif Modifier
@stop