@extends('layouts.app') @section('content')
Plan and track your business goals.
| Budget Name | Period | Start / End Date | Status | |
|---|---|---|---|---|
|
{{ $budget->name }}
|
{{ ucfirst($budget->period) }} |
{{ date('M d, Y', strtotime($budget->start_date)) }}
to {{ date('M d, Y', strtotime($budget->end_date)) }}
|
@php $now = date('Y-m-d'); @endphp @if($now >= $budget->start_date && $now <= $budget->end_date) Active @elseif($now < $budget->start_date) Upcoming @else Completed @endif | View Report |
No budgets created yet.Start planning your business financials today. |
||||