@extends('layouts.app') @section('title', 'Detail Financial Goal - GrowCash') @section('content')

Detail Financial Goal

Edit
@csrf @method('DELETE')
Nama Goal
{{ $goal->nama_goals }}
Target
Rp {{ number_format($goal->target, 0, ',', '.') }}
Tujuan Goal
{{ $goal->tujuan_goals }}

Progress

Terkumpul Rp {{ number_format($totalPemasukkan, 0, ',', '.') }}
@if($progress > 10) {{ number_format($progress, 1) }}% @endif
@if($progress < 10)

Progress: {{ number_format($progress, 1) }}%

@endif

Sisa yang dibutuhkan: Rp {{ number_format(max(0, $goal->target - $totalPemasukkan), 0, ',', '.') }}

@endsection