@extends('layouts.app')
@section('title', 'View Hectare Masters')
@section('content')
View Hectare Masters
Back
Role Name |
{{isset($hectareMaster->role_name) && $hectareMaster->role_name ? $hectareMaster->role_name : ''}} |
User Name |
{{isset($hectareMaster->first_name) && $hectareMaster->first_name ? $hectareMaster->first_name.' '.$hectareMaster->last_name : ''}} |
@if(isset($hectareMeasurement) && $hectareMeasurement)
@foreach($hectareMeasurement as $hM)
1 Hectare : |
{{isset($hM->value) && $hM->value ? $hM->value.' '.$hM->unit : ''}} |
@endforeach
@endif
@endsection