@extends('backend.layouts.app') @section('title') レンタル金額マスタ一覧 @endsection @section('content')

レンタル金額マスタ一覧

@include('backend.layouts.flash-message')
@if( $rental_prices->count() >0 ) @foreach($rental_prices as $rental_price) @endforeach @else @endif
1ヶ月 3ヶ月 6ヶ月 12ヶ月
名称 サイズ ボディ形状 日額 月額 距離縛り 月額 距離縛り 月額 距離縛り 月額 距離縛り
編集する {{ $rental_price->name }} {{ config('const.vehicle_size')[$rental_price->size] }} {{ $rental_price->body_category->name }} {{ number_format($rental_price->day_price) }} {{ number_format($rental_price->month_price) }} {{ $rental_price->month_destination_rule ? number_format($rental_price->month_destination_rule) : 'なし' }} {{ number_format($rental_price->three_month_price) }} {{ $rental_price->three_month_destination_rule ? number_format($rental_price->three_month_destination_rule) : 'なし' }} {{ number_format($rental_price->half_year_price) }} {{ $rental_price->half_year_destination_rule ? number_format($rental_price->half_year_destination_rule) : 'なし' }} {{ number_format($rental_price->year_price) }} {{ $rental_price->year_destination_rule ? number_format($rental_price->year_destination_rule) : 'なし' }}
データが存在しません。
{{ $rental_prices->links('vendor.pagination.admin-pagination') }}
@endsection