20 lines
445 B
PHP
20 lines
445 B
PHP
|
|
@extends('layouts.main')
|
|
|
|
@section('title')
|
|
{{ $honeycomb->name }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="">
|
|
<h1>{{$honeycomb->name}}</h1>
|
|
{!! $honeycomb->description !!}
|
|
{{$honeycomb->dueDate}}
|
|
@foreach($honeycomb->assignTo as $assigned)
|
|
Assigned To <button class="primary">{{$assigned->name}}</button>
|
|
@endforeach
|
|
</div>
|
|
@endsection
|
|
<script>
|
|
</script>
|