@extends('layout', ['service'=>$service]) @section('css') @endsection @section('gnb', view('gnb', ['service'=>$service])) @section('subgnb', view($service.'.gnb')) @section('content')
@include('common.board.path')
@csrf
@if(view()->exists('common.board.'.$db.'.compose-inc')) @include('common.board.'.$db.'.compose-inc') @else
@if ($config->secretable) @endif
is_secret))>
@endif
{!! !empty($article->content) ? $article->content:'' !!}
@if ($config->attachable)
@if (!empty($article->attachments))
    @foreach($article->attachments as $file)
  • @if(in_array($file->extension, config('system.image_ext'))) @endif
  • @endforeach
@endif
@endif
@endsection @section('footer', view('footer')) @section('script') {!! resource('js/common/custom-file-input.js') !!} {!! resource('js/common/board-compose.js') !!} @endsection