@php $layout = ($checkGstCreate == "firstTime") ? 'layout.onetime-app' : 'layout.app'; @endphp @extends($layout) @section('title','Setting (Tax & GST)') @push('header_script') @endpush @section('content') @if($checkGstCreate != "firstTime")
{{-- Back--}}
@endif
@if($checkGstCreate == "firstTime")

GST DETAILS

Please fill gst details.

@endif
{!! Form::open(['route' => ['setting-tax.store'],'onsubmit'=>'BtnSubmit.disabled = true', 'class'=>'row g-3 needs-validation', 'method' => 'post', 'id'=>'TaxForm', 'autocomplete' => 'off']) !!}
GST Settings
enable_gst == 'yes'))? 'checked': ''}} value="yes">
{{$errors->first('enable_gst')}}
enable_hsn_sac == 'yes'))? 'checked': ''}} value="yes">
{{$errors->first('enable_hsn_sac')}}
enable_tds == 'yes'))? 'checked': ''}} value="yes">
{{$errors->first('enable_tds')}}
enable_tcs == 'yes'))? 'checked': ''}} value="yes">
{{$errors->first('enable_tcs')}}
{!! Form::close() !!}
TAX Slab
@foreach($taxGroup as $tax) @if($tax->tax_slab == "None" || $tax->tax_slab == "Exempt") @else @endif @if($tax->created_by != 'System') @endif @endforeach
TAX Sub Group
@foreach($taxSubGroup as $subGroup) @endforeach
@endsection @push('footer_script') @include('common.modal.tax-rate') @endpush