@php $profile = getUser(); $model = isset($jackpot) && $jackpot ? $jackpot : crazy_arr(request()->all()); $txt = $model->id?'Cập nhật':'Thêm'; $order = [0 => 'Giải đặc biệt', 1 => "Giải nhất", 2 => 'Giải nhì']+get_number_options(3, 8); @endphp @extends($_layout.'admin') @section('title', 'Thông Kết quả xổ số') @section('header_title', 'Kết quả xổ số') @section('content')
{{$txt}} Kết quả xổ số
@csrf
{!! html_input([ 'type' => 'select', 'name' => 'area_id', 'id' => 'area_id', 'class' => 'form-control ' . (($area_id = $errors->first('area_id'))?'is-invalid':''), 'value' => old('area_id', $model->area_id), 'data' => get_area_options([]) ]) !!}
{{$area_id?$area_id:"Không được bỏ trống"}}
{{$open_date?$open_date:"Không được bỏ trống"}}
@foreach ($order as $n => $label)
{{$results?$results:"Không được bỏ trống"}}
@endforeach @if ($err = $errors->first('results'))
{{$err}}
@endif
Chú thích: Các kết quả ngăn cách nhau bằng dấu chấm phẩy (;)
@endsection