@extends('master') @section('content')

{{ __('Budgets') }}

{{ __('View and manage budgets') }}

@forelse ( $budgets as $budget ) @empty @endforelse
Budget Name Description Cost Monthly Yearly Actions
{{ $budget->name }} {{ $budget->description }} {{ $budget->cost }} {{ $budget->monthly }} {{ $budget->yearly }}
@if (!$budget->deleted_at)
@else @endif
No budgets found.
{{ $budgets->appends(['status' => request('status'), 'search' => request('search')])->links('pagination::tailwind') }}
@endsection @section('scripts') @endsection