@extends('layouts.app')
@section('title', 'ميزانية جديدة - '.config('app.name'))
@section('breadcrumb')
الرئيسية
›
المحاسبة
›
الموازنات
›
ميزانية جديدة
@endsection
@section('content')
@php
$monthKeys = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'];
$defaultBudgetItems = old('items', [
['account_id' => '', 'cost_center_id' => '', 'jan' => 0, 'feb' => 0, 'mar' => 0, 'apr' => 0, 'may' => 0, 'jun' => 0, 'jul' => 0, 'aug' => 0, 'sep' => 0, 'oct' => 0, 'nov' => 0, 'dec' => 0],
]);
@endphp
@endsection
@push('scripts')
@endpush