@extends('layouts.main') @section('page-title') {{ __('Manage Debit Notes') }} @endsection @section('page-breadcrumb') {{ __('Debit Note') }} @endsection @push('script-page') @endpush @push('css') @include('layouts.includes.datatable-css') @endpush @push('scripts') @include('layouts.includes.datatable-js') {{ $dataTable->scripts() }} @endpush @section('page-action')
@permission('debitnote create') @endpermission
@endsection @section('content')
{{ Form::label('debit_type', __('Type'), ['class' => 'form-label']) }} {{ Form::select('debit_type', $debit_type, isset($_GET['debit_type']) ? $_GET['debit_type'] : '0', ['class' => 'form-control']) }}
{{ $dataTable->table(['width' => '100%']) }}
@endsection @push('scripts') @endpush