@extends('layouts.admin') @section('title','Program RT') @section('admin_content')
Tambah Program
@foreach($programs as $p)
{{ $p->statusLabel() }}

{{ $p->title }}

{{ $p->description }}

Rp {{ number_format($p->budget,0,',','.') }} ({{ $p->fundingLabel() }})

Edit
@csrf @method('delete')
@endforeach
{{ $programs->links() }}
@endsection