@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.home') }} @stop @section('page-header') @endsection @section('content') @can('Home')
@foreach(\App\Models\Mohors::with('employee')->get() as $item) @php $total = (float) $item->huktar_num; $available = (float) $item->available_area; $used = $total - $available; $percentUsed = $total > 0 ? round(($used / $total) * 100) : 0; $activeColor = '#28a745'; $remainingColor = '#e9ecef'; @endphp @endforeach
اسم المحور حالة الإشغال (المساحة) المساحة الكلية المسؤول
{{ $item->mohor_name }}
{{ $percentUsed }}%
● مزروع: {{ $used }} هـ
○ متاح: {{ $available }} هـ
{{ $total }} هـ {{ $item->employee->name_ar ?? 'غير محدد' }}