@extends('layouts.master') @section('content')

Plantation Welcome to TOF

Plantation List

@if(!empty($plantationList) && $plantationList->count()) @foreach($plantationList as $key => $plantation) @endforeach @else @endif
ARN Number Name Plantation Type Father Name Mobile Email Status Submission Date Resubmission Date Action
{{ $plantation->arn_no }} {{ $plantation->name_of_pattadar }} {{ $plantation->plantationType->description }} {{ $plantation->father_name }} {{ $plantation->mobile_no }} {{ $plantation->email_id }} {{ $plantation->status }} {{ $plantation->created_at->format('d-m-Y') }} @if($plantation->status=='Resubmitted') {{ $plantation->updated_at->format('d-m-Y') }} @else N/A @endif @if($plantation->status!='Approved')
@csrf
@endif
No Plantation found!
{!! $plantationList->links() !!}
@include('layouts.footer')
@endsection