Add description field to nodes (#1065)
This commit is contained in:
parent
56478d81da
commit
f1a76ec7fd
5 changed files with 65 additions and 11 deletions
|
@ -58,6 +58,18 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@if ($node->description)
|
||||
<div class="col-xs-12">
|
||||
<div class="box box-default">
|
||||
<div class="box-header with-border">
|
||||
Description
|
||||
</div>
|
||||
<div class="box-body table-responsive">
|
||||
<pre>{{ $node->description }}</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
<div class="col-xs-12">
|
||||
<div class="box box-danger">
|
||||
<div class="box-header with-border">
|
||||
|
@ -146,4 +158,4 @@
|
|||
});
|
||||
})();
|
||||
</script>
|
||||
@endsection
|
||||
@endsection
|
Reference in a new issue