@extends('layouts.base') @section('title', '酒店提成明细') @section('content')
筛选
{!! app\common\helpers\DateRange::tplFormFieldDateRange('search[time]', [ 'starttime'=>date('Y-m-d H:i', strtotime($search['time']['start']) ?: strtotime('-1 month')), 'endtime'=>date('Y-m-d H:i',strtotime($search['time']['end']) ?: time()), 'start'=>0, 'end'=>0 ], true) !!}
总数:{{ $list['total'] }}
@foreach($list['data'] as $item) {{----}} @endforeach
ID 提成时间 订单号 酒店名称 订单金额 提成结算金额
插件分红
平台提成比例 提成金额 结算期 提成状态
{{ $item['has_one_hotel_order']['id'] }} {{ date('Y-m-d H:i:s', $item['created_at']) }} {{ $item['order_sn'] }} @if($item['has_one_hotel_order']['has_one_hotel']['hotel_name'] || $item['has_one_hotel_order']['has_one_hotel']['thumb'])
{{ $item['has_one_hotel_order']['has_one_hotel']['hotel_name'] }} @else {{ $item['has_one_hotel_order']['has_one_hotel']['hotel_name'] ?: '未更新' }} @endif
{{ $item['price'] }} 元 {{ $item['has_one_hotel_order']['amount'] + $item['has_one_hotel_order']['fee'] }}
{{ $item['plugin_bonus'] }}元
{{ $item['has_one_hotel_order']['fee_percentage'] }} {{ $item['has_one_hotel_order']['amount'] }} {{ (int)$item['has_one_hotel_order']['settlement_days'] }} @if($item['has_one_hotel_order']['has_settlement'] == 0) 未结算 @elseif($item['has_one_hotel_order']['has_settlement'] == 1) 已结算 @else 已失效 @endif --}} {{--查看详情--}} {{--
{!! $page !!}
@endsection