{!! Form::label('name', 'Name:') !!}

{{ $farm->name }}

{!! Form::label('address', 'Address:') !!}

{{ $farm->address }}

{!! Form::label('latitude', 'Latitude:') !!}

{{ $farm->latitude }}

{!! Form::label('longitude', 'Longitude:') !!}

{{ $farm->longitude }}

{!! Form::label('user_id', 'User Id:') !!}

{{ $farm->user->username}}

{!! Form::label('field_area', 'Field Area:') !!}

{{ $farm->field_area }}

{!! Form::label('size_unit', 'Size Unit:') !!}

{{ $farm->size_unit }}

{!! Form::label('image', 'Image:') !!}

{{ $farm->image }}

{!! Form::label('plots', 'Total Plots:') !!} {{ $farm->plots->count() }} @foreach($farm->plots as $plot)

{{$plot->name}}

@endforeach
{!! Form::label('created_at', 'Created At:') !!}

{{ $farm->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $farm->updated_at }}