@extends('managers.layout.master') @section('title', 'أكواد الخصم') @section('content')
أكواد الخصم
إنشاء جديد
@csrf
العقار
برجاء اختيار العقار
@foreach($buildings as $building)
{{$building->name['ar']}}
@endforeach
@if ($errors->has('building_id'))
{{ $errors->first('building_id') }}
@endif
الوحدة
@if ($errors->has('unit_id'))
{{ $errors->first('unit_id') }}
@endif
كود الخصم
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
حالة الكوبون
مفعل
غير مفعل
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
تاريخ بداية الخصم
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
تاريخ نهاية الخصم
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
نوع الخصم
نسبة
مبلغ كاش
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
المبلغ \ النسبة
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
حفظ
@stop