@extends('layouts.app') @section('content')
{!! $data->subject !!}
{{ date('Y.m.d H:i', strtotime($data->created_at)) }}
@if($data->images && count($data->images)) @foreach($data->images as $i => $asset)

@endforeach @endif
{!! $data->content !!}
@if($data->files && count($data->files))

첨부파일

@endif
목록 @if($data->prev || $data->next)
@if($data->prev) 이전글 @endif @if($data->next) 다음글 @endif
@endif
@endsection @push('style') @endpush @push('scripts') @endpush