@extends('layouts.admin') @section('page-title') {{__('Create Budget Planner')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('content')
{{ Form::open(array('url' => 'budget','class'=>'w-100')) }}
{{ Form::label('name', __('Name'),['class'=>'form-label']) }} {{ Form::text('name',null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('period', __('Budget Period'),['class'=>'form-label']) }} {{ Form::select('period', $periods,null, array('class' => 'form-control select period','required'=>'required')) }}
{{ Form::label('year', __('Year'),['class'=>'form-label']) }} {{ Form::select('year',$yearList,isset($_GET['year'])?$_GET['year']:'', array('class' => 'form-control select')) }}
@foreach($monthList as $month) @endforeach @foreach ($incomeproduct as $productService) @foreach($monthList as $month) @endforeach @endforeach @foreach($monthList as $month) @endforeach @foreach ($expenseproduct as $productService) @foreach($monthList as $month) @endforeach @endforeach @foreach($monthList as $month) @endforeach
{{__('Category')}}{{$month}}{{__('Total :')}}
{{__('Income :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
{{__('Expense :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
@foreach($quarterly_monthlist as $month) @endforeach @foreach ($incomeproduct as $productService) @foreach($quarterly_monthlist as $month) @endforeach @endforeach @foreach($quarterly_monthlist as $month) @endforeach @foreach ($expenseproduct as $productService) @foreach($quarterly_monthlist as $month) @endforeach @endforeach @foreach($quarterly_monthlist as $month) @endforeach
{{__('Category')}}{{$month}}{{__('Total :')}}
{{__('Income :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
{{__('Expense :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
@foreach($half_yearly_monthlist as $month) @endforeach @foreach ($incomeproduct as $productService) @foreach($half_yearly_monthlist as $month) @endforeach @endforeach @foreach($half_yearly_monthlist as $month) @endforeach @foreach ($expenseproduct as $productService) @foreach($half_yearly_monthlist as $month) @endforeach @endforeach @foreach($half_yearly_monthlist as $month) @endforeach
{{__('Category')}}{{$month}}{{__('Total :')}}
{{__('Income :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
{{__('Expense :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
@foreach($yearly_monthlist as $month) @endforeach @foreach ($incomeproduct as $productService) @foreach($yearly_monthlist as $month) @endforeach @endforeach @foreach($yearly_monthlist as $month) @endforeach @foreach ($expenseproduct as $productService) @foreach($yearly_monthlist as $month) @endforeach @endforeach @foreach($yearly_monthlist as $month) @endforeach
{{__('Category')}}{{$month}}{{__('Total :')}}
{{__('Income :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
{{__('Expense :')}}
{{$productService->name}} 0.00
{{__('Total :')}} 0.00 0.00
{{ Form::close() }}
@endsection