@extends('admin.dashboard') @section('title', "View Microunits of Suite: $suite->suiteid") @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

{!! Breadcrumbs::render('viewsuitemicrounits', $suite) !!}

Data Table With Microunits of: {{$suite->suiteid}}

Attach Microunit @include('admin.suites.modals.attach')
@foreach ($suite->microunits as $microunit) @endforeach
# ID Title Category Created at Actions
{{$microunit->id}} {{$microunit->title}} {{$microunit->category->name}} {{ date('j M. Y', strtotime($microunit->created_at)) }} View {!! Form::open(['route' => ['admin.stmu.detach', $suite->id, $microunit->id], 'method' => 'POST', 'id'=>'form-delete', 'style'=>'display:inline-block']) !!} @include('admin.suites.modals.detach') {!! Form::close() !!}
# ID Title Category Created at Actions
@endsection @section('javascripts') @endsection