@extends('layouts.app') @section('title', '車種区分マスタ') @section('content') {{-- ▼ コンテンツヘッダー(パンくず) --}}

車種区分マスタ

{{-- ▼ アクションボタン(市区マスタ準拠) --}}
新規
@if ($list->count() > 0)
@csrf
{{-- ▼ 統合列:チェック + 編集(背景色は #faebd7) --}} {{-- ▼ 表頭:ソート対応(ID / 名称) --}} @foreach ($list as $item) {{-- ▼ 統合セル:チェック + 編集(市区マスタの老書式に合わせる) --}} {{-- ▼ データ列 --}} @endforeach
車種区分ID @if($sort == 'id') @if($direction == 'asc') @else @endif @endif 車種区分名 @if($sort == 'subject') @if($direction == 'asc') @else @endif @endif
編集 {{ $item->psection_id }} {{ $item->psection_subject }}
@else {{-- ▼ データ無し表示 --}}
表示するデータがありません。
@endif
@endsection