@extends('admin.dashboard') @section('title', "View Elements of Microunit: $microunit->muid") @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

{!! Breadcrumbs::render('viewmicrounitselements', $microunit) !!}

Data Table With Elements of Microunit: {{$microunit->muid}}

Add Element
@foreach ($microunit->elementmicrounits as $element) @endforeach
# ID Title Type Created at Actions
{{$element->id}} {{$element->title}} {{$element->element->name}} {{ date('j M. Y', strtotime($element->created_at)) }} View @include('admin.elements.modals.view') Edit {!! Form::open(['route' => ['admin.element.destroy', $element->id], 'method' => 'DELETE', 'id'=>'form-delete', 'style'=>'display:inline-block']) !!} @include('admin.elements.modals.delete') {!! Form::close() !!}
# ID Title Type Created at Actions
@endsection @section('javascripts') @endsection