@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('finance.create_bills') }}

@include('expenses::payments.menu') @include('flash::message')
{{ Form::open(['method'=>'post','route' => 'payments.save_bill']) }}
{{ __('payments.add_vendor') }}
{{ Form::label('start_date', __('finance.bill_date')) }}
{{ Form::text('bill_date', '', ['class'=>'form-control required compulsory', 'readonly', 'id'=>'bill_date']) }}
{{ Form::label('end_date', __('payments.bill_due_date')) }}
{{ Form::text('bill_due_date', '', ['class'=>'form-control required compulsory', 'readonly', 'id'=>'bill_due_date']) }}
{{ Form::label('bill_number', __('payments.bill_number')) }} {{ Form::text('bill_number', '', ['class'=>'form-control required compulsory', 'id'=>'bill_number']) }}

#
{{ __('payments.item') }}
{{ __('payments.quantity') }}
{{ __('payments.unit_cost') }}
{{ __('payments.amount') }}
{{ __('payments.expense_account') }}
{{ __('payments.payable_account') }}
{{ __('payments.action') }}
@php $option_items = ""; foreach ($items as $item){ $option_items .= ""; } $back_date = \Streamline\Models\HospitalInformation::first()->pluck('back_date'); $option_suppliers = ""; foreach ($suppliers as $item){ $option_suppliers .= ""; } $option_suppliers .= ""; @endphp


{{-- --}}
{{ Form::close() }}
@endsection @push('scripts') @endpush