@extends('layouts.default', [ 'sidebarLight' => true, 'headerMegaMenu' => true, 'sidebarMenu' => 'board', ]) @section('title', Lang::get('board.word.board')) @push('css') @endpush @section('content')
{{ Lang::get('board.word.edit') }}
{{ Lang::get('board.word.title') }}
{{ Lang::get('board.word.name') }}
{{$board->edmerInfo->emm_name}}
{{ Lang::get('board.word.create_time') }}
{{$board->created_at}}
{{ Lang::get('board.word.file') }}
@if($board->files->count()) @foreach ($board->files as $item)
{{$item->name}} ({{$item->size." Bytes"}})
[{{ Lang::get('board.word.delete') }}]
@endforeach @else No files. @endif
{{ Lang::get('board.word.addfile') }}
{!! $errors->first('board_file.0', '
:message
') !!}
{{ Lang::get('board.word.content') }}
{{$board->content}}
@php $array=array('object'=>'boardContent') @endphp @include('template.ckeditor.ckeditor',['config'=>$array])
{{ Lang::get('board.word.list') }}
{{ Lang::get('board.word.cancle') }}
{{ Lang::get('board.word.save') }}
@endsection @push('scripts') @endpush