@extends('admin.dashboard') @section('title', 'Topics') @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

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

Data Table With Topics

Add New Topic @include('admin.categories.modals.create')
@foreach ($categories as $category) @endforeach
ID Topic Total MUs Total Suites Created On Created By Actions
{{$category->id}} {{$category->name}} {{$category->microunits->count()}} {{$category->suites->count()}} {{ date('j M. Y', strtotime($category->created_at)) }} {{$category->admin->name}} (Admin) View Edit @include('admin.categories.modals.edit') {!! Form::open(['route' => ['admin.topics.destroy', $category->id], 'method' => 'DELETE', 'id'=>'form-delete', 'style'=>'display:inline-block']) !!} @include('admin.categories.modals.delete') {!! Form::close() !!}
ID Topic Total MUs Total Suites Created On Created By Actions
@endsection @section('javascripts') @endsection