@extends('layout.layout') @section('content')
体检套餐
体检机构
@foreach($search_arr as $search_list)
{{ $search_list['label'] }}
@foreach($search_list['options'] as $search_item)
{{ $search_item['label'] }}
@endforeach
@endforeach
排序方式
综合排序
折扣最多
共有{{ $combo_count }}个符合条件的套餐
@foreach($combos['data'] as $combo)
@if($combo->cover != '') @else
暂无封面图
@endif
{{ $combo->name }}
@foreach($combo->tags_arr as $tag)
{{ $tag }}
@endforeach
¥ {{ $combo->price }} @if($combo->price < $combo->original_price) {{ $combo->original_price }} @endif
@endforeach
@if(count($combos['data']) > 0)
@foreach($combos['links'] as $key => $item)
@if($key == 0) 上一页 @elseif($key == count($combos['links']) - 1) 下一页 @else {{ $item['label'] }} @endif
@endforeach
@else
未搜索到符合条件的套餐
@endif @endsection