@extends('layouts.app') @section('title', '駐輪規定マスタ') @section('content')

駐輪規定マスタ

@if ($errors->any())
@foreach ($errors->all() as $e)
{{ $e }}
@endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif

駐輪場情報

駐輪場名
{{ $park->park_name ?? '' }}
新規 {{-- 件数 + ページネーション --}}
全 {{ $regulations->total() }} 件中 {{ $regulations->firstItem() }}〜{{ $regulations->lastItem() }} 件を表示
{{ $regulations->appends(request()->query())->links('pagination') }}
@forelse($regulations as $r) @empty @endforelse
操作 車種区分 駐輪分類 駐輪規定
編集
@csrf
{{ $r->psection_subject ?? $r->psection_id }} {{ $r->ptype_subject ?? $r->ptype_id }} {!! $r->regulations_text !!}
規定がありません。
{{ $regulations->appends(request()->query())->links('pagination') }}
@endsection