@extends('managers.layout.master')
@section('title', "العروض")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
العقار |
الوحدة |
إسم العرض |
نوع العرض |
نسبة | مبلغ العرض |
تاريخ البداية |
تاريخ النهاية |
الحالة |
التحكم |
@foreach($rows as $row)
{{$i}} |
{{$row->building->name['ar']}} |
{{$row->unit->title}} |
{{$row->offer_name}} |
{{$row->offer_type == 'cash' ? "كاش" : "نسبة"}} |
{{$row->offer_amount}} |
{{$row->date_from}} |
{{$row->date_to}} |
{{$row->status == 'active' ? "مفعل" : "غير مفعل"}} |
|
@endforeach
@stop