@extends('layouts.admin') @section('content')

contacts Liste de contacts

@if(sizeof($contacts) > 0) {!! Form::open() !!}

Contacts du site

Gestion des contacts du site internet

@foreach($contacts as $contact) @endforeach
ID Nom du contact Par défaut Actions
{{ $contact->id }} {{ $contact->nom }} {{ $contact->prenom }}  
add
{!! Form::close() !!}
@else add @endif @stop @section('js') @parent {!! Html::script("https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js") !!} @stop