@extends('layouts.page', [
'panel_display' => true,
'panel_menu_active' => ['notices.list']
])
@include('html.header.edm-ajax')
@include('html.header.validator')
@include('html.header.input')
@push('css')
@endpush
@push('head')
@endpush
@section('ui-content')
@php
$query = count(request()->query()) ? '?'.http_build_query(request()->query()) : '';
@endphp
파트너 게시판
@if (isLogin('staff'))
@endif
@include('template.boards.view.default', [
'item' => $notice,
'headers' => [
[
'column' => 'created_member_name',
'name' => '등록자',
],
[
'column' => 'created_date',
'name' => '등록일',
],
],
])
@include('template.boards.comment.list', [
'items' => $notice->comments,
'urls' => [
'store' => route('notices.comments.store', $notice->getKey()),
'update' => route('notices.comments.update', $notice->getKey()),
'delete' => route('notices.comments.delete', $notice->getKey()),
],
])
@endsection