@extends('layouts.default', [
'activatedNavItem' => 'UNIVERSITY',
])
@push('head')
@endpush
@section('content')
@forelse ($contentList as $item)
-
{{ $item->p_title }}
{{ $item->p_reg_date->format('Y.m.d') }}
조회 {{ $item->p_read }}
@empty
@endforelse
@if (count($contentList))
{{ $contentList->appends(request()->except('page'))->links('layouts.pagination') }}
@endif
@endsection