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

This is appended to the master sidebar.

@stop @section('content')

Articles

@if(empty($articles))

Aucun article definie

@endif @if(!empty($articles))
@foreach($articles as $article) @endforeach
Articles Stock Quantités
{{$article['article']}} {{$article['departement']}} {{sizeof($article['quantite'])}}
@endif

Localisation

@if(empty($articles))

Aucune localisation definie

@endif @if(!empty($articles))
@foreach($locations as $location) @endforeach
Local Description
{{$location['name']}} {{$location['description']}}
@endif
@stop