@extends('admin.layout.content') @section('content')
{{-- Notifikasi Flash Message Sukses / Gagal --}} @if (session('success')) @endif @if (session('error')) @endif {{-- Alert Menampilkan Error Validasi Input Form --}} @if ($errors->any()) @endif

Manajemen Masa Tanam

Kelola periode musim tanam, modal, dan hasil panen untuk setiap produk.

{{-- Trigger Modal Tambah --}}
search
Tampilkan:
@forelse($periods as $index => $period) @empty @endforelse
No Kode Periode Produk Status Aksi
{{ $index + 1 }} {{ $period->period_code }} {{ $period->product->product_name ?? '-' }} @php $statusClass = match($period->status) { 'berlangsung' => 'bg-info', 'panen' => 'bg-warning', 'selesai' => 'bg-secondary', default => 'bg-secondary', }; @endphp {{ ucfirst($period->status) }}
{{-- Tombol Detail --}} {{-- Tombol Edit --}} {{-- Tombol Hapus --}}
Belum ada data periode masa tanam yang tersedia.

{{-- ==================== MODAL TAMBAH (CREATE) ==================== --}} {{-- ==================== MODAL DETAIL ==================== --}} {{-- ==================== MODAL EDIT (UPDATE) ==================== --}} {{-- ==================== MODAL HAPUS (DELETE) ==================== --}} {{-- JAVASCRIPT --}} @endsection