@extends('admins.layouts.main') @section('content') @foreach($ArticlesArray as $mainK => $subRow)

{{ $articleCategoryMap[$mainK] }}

@foreach($subRow as $row) @foreach($row as $v) @endforeach @endforeach
操作 子分類 標題 是否公告 發佈時間
編輯
刪除
{{ $v->subCategoryName }} {{ $v->title }} {{ ($v->display_switch==1) ? '是' : '否' }} {{ $v->published_at }}
@endforeach

前台登入畫面

@foreach($announcements as $v) @endforeach
操作 標題 是否顯示 發佈時間
編輯
刪除
{{ $v->title }} {{ ($v->is_show==1) ? '是' : '否' }} {{ $v->published_start }}

後台公告畫面

@foreach($announcements_backstag as $v) @endforeach
操作 標題 是否顯示 發佈時間
編輯
刪除
{{ $v->title }} {{ ($v->is_show==1) ? '是' : '否' }} {{ $v->published_start }}
@include('admins.share_block._modal_delete') @endsection