@extends('mobile.module.layouts.content')
@push('meta')
@endpush
@push('css')
@endpush
@push('js')
@endpush
@section('content')
@if($enactList->total())
@foreach($enactList as $key=> $val)
{{ $val->jobfair->title }}
展位号:{{ $val->position }}
预定时间:{{ $val->created_at }}
@switch($val->audit)
@case(1)
预定成功
@break
@case(2)
等待审核
@break
@case(3)
审核未通过
@break
@endswitch
@if($val->jobfair->holddate_end < time())
招聘结束
@else
@switch($val->audit)
@case(1)
发布职位
@break
@case(2)
发布职位
@break
@endswitch
@endif
@endforeach
@endif
@endsection
@section('script')
@endsection