@extends('author.dashboard') @section('title', 'Microunits') @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

{!! Breadcrumbs::render('authsuites') !!}

Data Table With Suites

Add Suite
@foreach ($suites as $suite) @include('author.suites.modals.attach') @endforeach
ID Title Created On Topic Status Actions Microunits
{{$suite->id}} {{$suite->title}} {{ date('j M. Y', strtotime($suite->created_at)) }} {{$suite->category->name}} @if ($suite->approved == 0)
Pending
@elseif ($suite->approved == 1)
Activated
@endif
@include('author.modals.deletesuite') @if($suite->microunits->count()) {{$suite->microunits->count()}} microunits @else Attach Microunit @endif
ID Title Created On Topic Status Actions Microunits
@endsection @section('javascripts') @endsection