Created: {{ $batch->created_at->format('M d, Y') }}
{{ $batch->remark }}
ID | Stage | Status | Start Time | End Time | Actions |
---|---|---|---|---|---|
{{ $ecoProcess->id }} | {{ $ecoProcess->stage }} | @php $statusColors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'in_progress' => 'bg-blue-100 text-blue-800', 'completed' => 'bg-green-100 text-green-800', 'failed' => 'bg-red-100 text-red-800', ]; $statusColor = $statusColors[$ecoProcess->status] ?? 'bg-gray-100 text-gray-800'; @endphp {{ str_replace('_', ' ', ucfirst($ecoProcess->status)) }} | {{ $ecoProcess->start_time?->format('Y-m-d H:i') ?? 'N/A' }} | {{ $ecoProcess->end_time?->format('Y-m-d H:i') ?? 'N/A' }} |
@if(Route::has('batches.eco-processes.show'))
{{ __('View') }}
@endif
@can('update', $ecoProcess)
{{ __('Edit') }}
@endcan
|
Get started by adding a new eco process.
@can('create_batch') @endcan