115 lines
6.0 KiB
PHP
115 lines
6.0 KiB
PHP
@extends('layouts.app')
|
||
@section('title', 'シール印刷範囲マスタ')
|
||
|
||
@section('content')
|
||
<!-- Content Header -->
|
||
<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="{{ route('home') }}">ホーム</a></li>
|
||
<!-- <li class="breadcrumb-item"><a href="javascript:void(0);">[東京都|〇〇駐輪場]</a></li> -->
|
||
<li class="breadcrumb-item active">シール印刷範囲マスタ</li>
|
||
</ol>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Main Content -->
|
||
<section class="content">
|
||
<div class="container-fluid">
|
||
|
||
{{-- 並び替え用 hidden --}}
|
||
<form action="{{ route('print_areas') }}" method="POST" id="list-form">
|
||
@csrf
|
||
<input type="hidden" name="sort" value="{{ $sort ?? '' }}">
|
||
<input type="hidden" name="sort_type" value="{{ $sort_type ?? '' }}">
|
||
</form>
|
||
|
||
<!-- 操作ボタン + ページネーション -->
|
||
<div class="container-fluid mb20">
|
||
<button type="button" class="btn btn-sm btn-default mr10" onclick="location.href='{{ route('print_areas_add') }}'">新規</button>
|
||
<button type="button" class="btn btn-sm btn-default mr10" id="delete">削除</button>
|
||
<!-- <button type="submit" class="btn btn-sm btn-default mr10" form="form_export">CSV出力</button> -->
|
||
<button type="button"
|
||
id="export_csv"
|
||
class="btn btn-sm btn-default mr10"
|
||
action="{{ route('print_areas_export') }}">
|
||
{{ __('CSV出力') }}
|
||
</button>
|
||
<div class="d-flex justify-content-end">
|
||
{{ $list->appends(['sort' => $sort ?? '', 'sort_type' => $sort_type ?? ''])->links('pagination') }}
|
||
</div>
|
||
</div>
|
||
|
||
{{-- ▼ フラッシュメッセージ --}}
|
||
<div class="form col-lg-12">
|
||
@if(Session::has('success'))
|
||
<div class="alert alert-success alert-dismissible" role="alert">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
{{ Session::get('success') }}
|
||
</div>
|
||
@elseif(Session::has('error'))
|
||
<div class="alert alert-danger alert-dismissible">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-ban"></i> {{ __('入力内容に不備があります') }}:</h4>
|
||
{!! Session::get('error') !!}
|
||
</div>
|
||
@elseif(isset($errorMsg))
|
||
<div class="alert alert-danger alert-dismissible">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-ban"></i> {{ __('入力内容に不備があります') }}:</h4>
|
||
{!! $errorMsg !!}
|
||
</div>
|
||
@endif
|
||
</div>
|
||
|
||
<!-- ▼ 単一テーブル構成 -->
|
||
<div class="col-lg-12 mb20">
|
||
<div class="table-responsive">
|
||
<form action="{{ route('print_areas_delete') }}" method="POST" id="form_delete">
|
||
@csrf
|
||
<table class="table table-bordered dataTable text-nowrap">
|
||
<thead class="thead-light">
|
||
<tr>
|
||
{{-- チェック + 編集ボタン --}}
|
||
<th style="width:140px; border-left:1px solid #dcdcdc;" class="text-left">
|
||
<input type="checkbox" onclick="$('input[name*=\'pk\']').prop('checked', this.checked);">
|
||
</th>
|
||
<th class="sorting {{ ($sort=='print_area_id') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="print_area_id"><span>印刷範囲ID</span></th>
|
||
<th class="sorting {{ ($sort=='print_area_name') ? ($sort_type=='asc'?'sorting_asc':'sorting_desc') : '' }}" sort="print_area_name"><span>印刷範囲名</span></th>
|
||
<th><span>駐輪場ID</span></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody class=bg-white>
|
||
{{-- データ表示 --}}
|
||
@foreach($list as $item)
|
||
<tr>
|
||
<td class="align-middle" style="background-color:#faebd7;">
|
||
<div class="d-flex align-items-center">
|
||
<input type="checkbox" class="m-0 checkbox" name="pk[]" value="{{ $item->print_area_id }}">
|
||
<a href="{{ route('print_areas_edit', ['id' => $item->print_area_id]) }}" class="btn btn-sm btn-default ml10">編集</a>
|
||
</div>
|
||
</td>
|
||
<td class="sm-item text-left align-middle">{{ $item->print_area_id }}</td>
|
||
<td class="sm-item text-left align-middle">{{ $item->print_area_name }}</td>
|
||
<td class="sm-item text-left align-middle">{{ optional($item->park)->park_name ?? '-' }}</td>
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
<!-- ▲ 単一テーブル構成ここまで -->
|
||
</div>
|
||
</section>
|
||
|
||
<form action="{{ route('print_areas_export') }}" method="GET" id="form_export"></form>
|
||
@endsection
|