记录查询

@if(session('error'))
{{ session('error') }}
@endif
@csrf
@if(isset($records))

查询结果

共 {{ $records->total() }} 条记录

@csrf
@if($recordType == 2) @endif @foreach($records as $record) @if($recordType == 2) @endif @endforeach
姓名 身份证号 体检日期 机构名称行业类型
{{ $record->name ?? '' }} {{ $record->id_card_num ?? '' }} {{ $record->created_at ?? '' }} {{ $record->org_name ?? '' }}{{ $record->industry_type ?? '' }}
{{ $records->links() }}
@endif