@extends('layouts.app') @section('title', 'Crop Plans') @section('content')

Crop Plans

All your planning scenarios in one place.

New Plan
@if($plans->isEmpty())

No crop plans yet.

Create your first plan
@else
@foreach($plans as $plan) @endforeach
Plan Crop Location Month Risk Status Last Analyzed
{{ $plan->name }} {{ $plan->crop }} {{ $plan->location }} {{ date('F', mktime(0,0,0,$plan->planting_month,1)) }} {{ $plan->risk_tolerance }} @if($plan->latest_feasibility_label === 'suitable') Suitable @elseif($plan->latest_feasibility_label === 'risky') Risky @elseif($plan->latest_feasibility_label === 'not_suitable') Not Suitable @else Not analyzed @endif {{ $plan->latest_analysis_at ? $plan->latest_analysis_at->diffForHumans() : '—' }}
View
@csrf
{{ $plans->links() }}
@endif
@endsection