@extends('admin.layout.master')
@section('title', "وحدات العقار")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
إسم الوحده |
حالة العرض |
موافقة الإداره |
كود الوحدة |
التقييم الإجمالى |
التحكم |
@foreach($unites as $unite)
{{$i}} |
{{$unite->title}} |
{{$unite->show == 'true' ? "حالة الإظهار" : "مختفية"}} |
{{$unite->admin_approve == 'true' ? "تمت الموافقة" : "لم تتم الموافقة"}} |
{{$unite->unit_code}} |
{{$unite->total_rate}} |
|
@endforeach
@stop