@extends('admin.layouts.layouts') @section('title', 'View My Farm') @section('content')
Farm Name:
{{ $showDetails->farm_name ?? '-' }}
Regulator:
{{ $showDetails->regulator ?? '' }}
Land Record Number:
{{ $showDetails->land_record_number ?? '' }}
Pincode:
{{ $showDetails->pincode ?? '' }}
Address:
{{ $showDetails->address ?? '' }}
Latitude:
{{ $showDetails->latitude ?? '' }}
Longitude:
{{ $showDetails->longitude ?? '' }}
Created At:
{{ $showDetails->created_at->format('d-m-Y h:i A') ?? '' }}
Irrigation Source:
{{ $showDetails->getIrrigationSourceNamesAttribute() ?? '' }}
Irrigation System:
{{ $showDetails->getIrrigationSystemNamesAttribute() ?? '-' }}
Soil Texture:
{{ $showDetails->soilTexture->name ?? '' }}
Owner Type:
{{ $showDetails->ownerType->name ?? '' }}
Owner Name:
{{ $showDetails->owner_name ?? '' }}
Document:
@if ($showDetails->document) @else No document available @endif
@endsection @section('page-js') @endsection