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.

56 lines
1.8 KiB

2 years ago
@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>
2 years ago
楼栋
2 years ago
</th>
2 years ago
<th>病区</th>
<th>总收入</th>
@foreach ($lie as $row)
<th>{{$row}}</th>
@endforeach
2 years ago
</tr>
</thead>
<tbody>
2 years ago
@foreach ($data as $row)
<tr data-id="{{$row->id}}">
<td>
2 years ago
{{ $row->building->name }}
2 years ago
</td>
<td>
{{ $row->name }}
</td>
<td>{{ $row->order_total }}</td>
2 years ago
{{-- <td>--}}
{{-- @foreach ($row->content as $item)--}}
{{-- {{ $item['ask'] }}{{ $item['score'] }}<br/>--}}
{{-- @endforeach--}}
{{-- </td>--}}
2 years ago
</tr>
@endforeach
2 years ago
</tbody>
</table>
@include("public._pages")
</div>
</div>
</div>
</div>
@include("public._delete")
@endsection
@push("footer")
<script>
</script>
@endpush