@extends('layouts.app') @section('title', 'Homework') @push('styles') @endpush @section('content') @php $hwJson = $homework->map(function ($h) { return ['id' => $h->id, 'subject' => $h->subject, 'description' => $h->description, 'due_date' => $h->due_date ? \Carbon\Carbon::parse($h->due_date)->format('Y-m-d') : '', 'status' => $h->status]; }); @endphp
{{ $hw->description }}
Are you sure? This cannot be undone.