@extends('layouts.console') @section('title','バナー管理')@section('console','運営管理')@section('heading','バナー管理') @section('who','管理者')@section('logout', route('admin.logout')) @section('nav')@include('admin._nav')@endsection @section('content')

バナー一覧

画像は外部URL もしくはサーバ内パス(FTPで /public_html/banner-uploads/ 等に置いて相対パスを指定)。表示位置: {{ implode(' / ',$positions) }}。

@forelse($banners as $b)
@csrf
#{{ $b->id }}
@if($b->image)
プレビュー:
@endif
@empty
バナー未登録
@endforelse

+ 新規バナー

@csrf

お知らせ(参考表示)

@forelse(\App\Models\News::latest()->get() as $n) @empty @endforelse
日付タイトル公開
{{ optional($n->published_at)->format('Y-m-d') }}{{ $n->title }}{{ $n->is_published?'公開':'下書き' }}
お知らせ未登録
@endsection