krgm.so-manager-dev.com/resources/views/admin/prices/list.blade.php

166 lines
10 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@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><!-- /.col -->
<div class="col-lg-6">
<ol class="breadcrumb float-sm-right text-sm">
<li class="breadcrumb-item"><a href="{{route('home')}}">XX様info(ホーム)</a></li>
<li class="breadcrumb-item"><a href="javascript: void(0);">[東京都|〇〇駐輪場]</a></li>
<li class="breadcrumb-item active">{{__('駐輪場所、料金マスタ')}}</li>
</ol>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content-header -->
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<!-- SELECT2 EXAMPLE -->
<div class="row">
<form action="{{route('prices')}}" method='post' id='list-form'>
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="hidden" value="{{$sort}}" name="sort" id="sort">
<input type="hidden" value="{{$sort_type}}" name="sort_type" id="sort_type">
</form>
<div class="container-fluid mb20">
<button type="submit" class="btn btn-sm btn-default mr10" name="delete" id="delete">{{__('削除')}}</button>
<button type="submit" class="btn btn-sm btn-default mr10" name="import_csv" id="import_csv" action="{{route('prices_import')}}">{{__('インポート')}}</button>
<button type="submit" class="btn btn-sm btn-default mr10" name="export_csv" id="export_csv" action="{{route('prices_export')}}">{{__('CSV出力')}}</button>
{{ $list->appends(['sort' => $sort,'sort_type'=>$sort_type])->links('pagination') }}
</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 row sample03-wrapper no_padding_right mb20">
<div class="col-xl-2 col-lg-2 col-md-2 col-sm-3 col-xs-3 table_left">
<form action="{{route('prices_delete')}}" method="post" id="form_delete">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<table class="table dataTable">
<thead>
<tr>
<th>
<input type="checkbox" class="minimal m-0" id="checkbox_all">
</th>
</tr>
</thead>
<tbody>
@foreach($list as $item)
<tr role="row">
<td>
<input type="checkbox" class="minimal m-0 checkbox"
value="{{$item->price_parkplaceid}}" name="pk[]">
<div class="btn_action">
{{--<a href="{{route('price_add')}}" class="btn btn-sm btn-default">詳細</a>--}}
<a href="{{route('price_info',['pk'=>$item->price_parkplaceid])}}"
class="btn btn-sm btn-default ml10">{{__('編集')}}</a>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</form>
</div>
<div class="col-lg-10 col-xl-10 col-md-10 col-sm-9 col-xs-9 table_right no_padding_right">
<div class="scroll">
<table class="table dataTable">
<thead>
<tr>
<!-- 駐車場所ID -->
<th class="sorting @if($sort=="price_parkplaceid"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
sort="price_parkplaceid"><span>{{__('validation.attributes.price_parkplaceid')}}</span>
</th>
<!-- 商品名 -->
<th><span>{{__('validation.attributes.prine_name')}}</span></th>
<!-- 期間 -->
<th><span>{{__('validation.attributes.price_month')}}</span></th>
<!-- 駐輪場名 -->
<th class="sorting @if($sort=="park_id"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
sort="park_id"><span>{{__('validation.attributes.park_name')}}</span>
</th>
<!-- 車種区分 -->
<th class="sorting @if($sort=="psection_id"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
sort="psection_id"><span>{{__('validation.attributes.psection_subject')}}</span>
</th>
<!-- 駐輪分類 -->
<th class="sorting @if($sort=="price_ptypeid"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
sort="price_ptypeid"><span>{{__('validation.attributes.ptype_subject')}}</span>
</th>
<!-- 利用者分類 -->
<th><span>{{__('validation.attributes.user_category_name')}}</span></th>
<!-- 駐車車室 -->
<th class="sorting @if($sort=="pplace_id"){{$sort_type == 'asc'?'sorting_asc':'sorting_desc'}}@endif"
sort="pplace_id"><span>{{__('validation.attributes.pplace_id')}}</span>
</th>
<!-- 駐輪料金(税込) -->
<th><span>{{__('validation.attributes.price')}}</span></th>
</tr>
</thead>
<tbody>
@foreach($list as $item)
<tr>
<!-- 駐車場所ID -->
<td class='sm-item text-left'><span>{{mb_substr($item->price_parkplaceid, 0, 10)}}</span></td>
<!-- 商品名 -->
<td class='sm-item text-right'><span>{{mb_substr($item->prine_name, 0, 10)}}</span></td>
<!-- 期間 -->
<td class='sm-item text-right'><span>{{mb_substr(__(\App\Price::PRICE_MONTH[$item->price_month]), 0, 10)}}</span></td>
<!-- 駐輪場名 -->
<td class='sm-item text-right'><span>{{mb_substr(!empty($item->getPark())? $item->getPark()->park_name:'' , 0, 10)}}</span></td>
<!-- 車種区分 -->
<td class='sm-item text-right'><span>{{mb_substr(!empty($item->getPSection())? $item->getPSection()->psection_subject:'' , 0, 10)}}</span></td>
<!-- 駐輪分類 -->
<td class='sm-item text-right'><span>{{mb_substr(!empty($item->getPType())? $item->getPType()->ptype_subject:'' , 0, 10)}}</span></td>
<!-- 利用者分類 -->
<td class='sm-item text-right'><span>{{mb_substr(!empty($item->getUserType())? $item->getUserType()->print_name:'' , 0, 10)}}</span></td>
<!-- 駐車車室 -->
<td class='sm-item text-right'><span>{{mb_substr($item->pplace_id, 0, 10)}}</span></td>
<!-- 駐輪料金(税込) -->
<td class='sm-item text-right'><span>{{mb_substr($item->price, 0, 10)}}</span></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div><!-- /.container-fluid -->
</section>
<!-- /.content -->
@endsection