@extends('layout', ['service'=>$service]) @section('css') @endsection @section('gnb', view('gnb', ['service'=>$service])) @section('subgnb', view($service.'.gnb')) @section('content')
@include('common.board.path')
{{ $articles->total() }}개의 {{ $total_title }}
@if(view()->exists('common.board.'.$db.'.index-category-inc')) @include('common.board.'.$db.'.index-category-inc') @endif
@if ($db == 'faq')@endif @if ($db == 'course-review')@endif @if ($db == 'testcenter-review')@endif @foreach($articles as $article) @if ($db == 'faq') @endif @if ($db == 'course-review') @endif @if ($db == 'testcenter-review') @endif @endforeach
번호구분강사시험장제목 작성자 작성일 조회
{{ $article->id }} {{ $article->faq_type }} {{ $article->exam_type }} @if ($config->secretable and $article->is_secret) @if (!empty(auth()->check()) and ($article->created_by == auth()->user()->id)) lock_open_right @else lock @endif @endif @if ($article->created_at->addDays(1) > now()->toDateTimeString() ) N @endif {{ $article->title }} {!! !empty($article->comments) ? '('.$article->comments->count().')':'' !!} {{ !empty($article->created_by) ? $article->writer->name:'' }} {{ $article->created_at->format('Y.m.d') }} {{ $article->views }}
@endsection @section('footer', view('footer')) @section('script') @endsection