You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.7 KiB
58 lines
1.7 KiB
@extends("admin.layouts.layout")
|
|
|
|
@section("content")
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<table class="table table-bordered" id="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
楼栋
|
|
</th>
|
|
<th>病区</th>
|
|
<th>总收入</th>
|
|
@foreach ($lie as $v)
|
|
<th>{{$v}}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($data as $row)
|
|
<tr data-id="{{$row->id}}">
|
|
<td>
|
|
{{ $row->building->name }}
|
|
</td>
|
|
<td>
|
|
{{ $row->name }}
|
|
</td>
|
|
<td>{{ $row->order_total }}</td>
|
|
|
|
@foreach ($row->lies as $r)
|
|
<td>{
|
|
{{$r->total_price}}
|
|
</td>
|
|
@endforeach
|
|
|
|
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@include("public._pages")
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@include("public._delete")
|
|
@endsection
|
|
|
|
@push("footer")
|
|
<script>
|
|
|
|
</script>
|
|
@endpush
|