32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
@extends('layouts.app')
|
|
@section('title', '車種区分詳細')
|
|
@section('content')
|
|
<div class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-lg-6"><h1 class="m-0 text-dark">車種区分詳細</h1></div>
|
|
<div class="col-lg-6">
|
|
<ol class="breadcrumb float-sm-right text-sm">
|
|
<li class="breadcrumb-item"><a href="{{ url('/home') }}">ホーム</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('psection') }}">車種区分マスタ</a></li>
|
|
<li class="breadcrumb-item active">詳細</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
<div class="form-group">
|
|
<label>車種区分ID</label>
|
|
<input type="number" value="{{ $psection->psection_id }}" class="form-control" readonly>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>車種区分名</label>
|
|
<input type="text" value="{{ $psection->psection_subject }}" class="form-control" readonly>
|
|
</div>
|
|
<a href="{{ route('psection') }}" class="btn btn-secondary">一覧に戻る</a>
|
|
</div>
|
|
</section>
|
|
@endsection
|