@extends('layouts.dashboard') @section('pagehead', 'Add Bill') @section('bredcrumb-item-link',url('/home/billing')) @section('bredcrumb-item','All Bills') @section('content') @include('layouts.notification') {{__('Bill No IOPM' . $modules['lastId']['id'] + 1 )}} @csrf Select Client @foreach($modules['clients'] as $key => $client) {{ $client['name'] }} @endforeach Address State City Select Brand @foreach($modules['brands'] as $key => $brand) {{ $brand['brand_name'] }} @endforeach Select Pages @foreach($modules['pages'] as $key => $page) {{ $page['name'] . ' -- ' . $page['price'] }} @endforeach Select Page Number @foreach($modules['page_numbers'] as $key => $pagenumber) {{ $pagenumber['name'] }} @endforeach Select Issue Number @foreach($modules['issue_numbers'] as $key => $issue_number) {{ $issue_number['name'] }} @endforeach Issue Year Issue Month Select Color @foreach($modules['colors'] as $key => $color) {{ $color['name'] }} @endforeach Select Currency @foreach($modules['currency'] as $key => $currency) {{ $currency['name'] }} @endforeach Select HSN @foreach($modules['hsn'] as $key => $hsn) {{ $hsn['name'] }} @endforeach Financial Year @foreach($modules['financial_year'] as $key => $year) {{ date('Y', strtotime($year->start_date)) . '-' . date('Y', strtotime($year->end_date)) }} @endforeach Rate (With Code) Rate (With Code) Rate (With Code) Rate (With Code) Rate Amount Discount(%) Total Discount GTotal SGST(%) CGST(%) IGST(%) Grand Total With Tax Total SGST Total CGST Total Igst @endsection @section('scripts') @endsection
{{__('Bill No IOPM' . $modules['lastId']['id'] + 1 )}}