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

Dashboard OPALESCE Version 1.0

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

Data Table with Authors: {{$authors->count()}}

@foreach ($authors as $author) @endforeach
ID Name Language Profession Email Registered On Total MUs Total Suites View Profile
{{$author->id}} {{$author->name}} {{$author->language->language}} {{$author->profession}} {{$author->email}} {{ date('j M. Y', strtotime($author->created_at)) }} {{$author->microunits->count()}} {{$author->suites->count()}}
ID Name Language Profession Email Registered On Total MUs Total Suites View Profile
@endsection @section('javascripts') @endsection