@extends('layouts.app') @section('title', 'Recurring Expenses') @section('content')
| Profile Name | Vendor | Category | Frequency | Next Run Date | Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $profile->profile_name }} | {{ optional($profile->vendor)->name ?? '-' }} | {{ optional($profile->category)->name }} | Every {{ $profile->interval_value }} {{ rtrim($profile->frequency, 'ly') }}{{ $profile->interval_value > 1 ? 's' : '' }} | @if($profile->status != 'stopped') {{ $profile->next_run_date->format('d M Y') }} @else - @endif | {{ formatCurrency($profile->amount) }} | @php $statusColors = [ 'active' => 'bg-success', 'paused' => 'bg-warning text-dark', 'stopped' => 'bg-danger', ]; @endphp {{ ucfirst($profile->status) }} |
|
|
No recurring expense profiles found. Create your first profile |
|||||||