@extends('layouts.dash') @section('title') Ruches @stop @section('title_card',"Ruches") @section('content')
@foreach ($ruches as $ruche) @endforeach
Nom MAC Position Nb Capteurs Nb Mesures Poids actuel Dernière Mesures
{!! $ruche->nom !!} {!! $ruche->mac !!} {!! $ruche->gps !!} {!! $ruche->NbCapteurs !!} {!! $ruche->NbMesures !!} {!! $ruche->PoidsActuel !!} {!! $ruche->LastMesure !!} {!! Form::open(['url' => url('ruches/' . $ruche->id), 'method' => 'DELETE']) !!} {{ csrf_field() }} {!! Form::close() !!}
@endsection @section('scripts') @include("forms.scripts_datatable") @endsection