@php $profile = getUser(); $model = isset($jackpot) && $jackpot ? $jackpot : crazy_arr(request()->all()); $txt = $model->id?'Cập nhật':'Thêm'; @endphp @extends($_layout.'admin') @section('title', '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"}}
{!! html_input([ 'type' => 'select', 'name' => 'order', 'id' => 'jackpot_order', 'class' => 'form-control ' . (($order = $errors->first('order'))?'is-invalid':''), 'value' => old('order', $model->order?$model->order:"all"), 'data' => [0 => 'Giải đặc biệt', 1 => "Giải nhất"]+get_number_options(2, 8) ]) !!}
{{$order?$order:"Không được bỏ trống"}}
{{$open_date?$open_date:"Không được bỏ trống"}}
{{$number?$number:"Không được bỏ trống"}}
Chú thích: Các kết quả ngăn cách nhau bằng dấu chấm phẩy (;)
@endsection