@extends('layouts.main') @section('page-title') {{ __('Manage Payments') }} @endsection @section('page-breadcrumb') {{ __('Payment') }} @endsection @section('page-action')
@if (module_is_active('ProductService')) @permission('bill create') @endpermission @endif @permission('expense payment create') @endpermission
@endsection @push('css') @include('layouts.includes.datatable-css') @endpush @push('scripts') @include('layouts.includes.datatable-js') {{ $dataTable->scripts() }} @endpush @section('content')
{{ Form::label('date', __('Date'), ['class' => 'form-label']) }} {{ Form::text('date', isset($_GET['date']) ? $_GET['date'] : null, ['class' => 'form-control flatpickr-to-input', 'placeholder' => 'Select Date']) }}
{{ Form::label('account', __('Account'), ['class' => 'form-label']) }} {{ Form::select('account', $account, isset($_GET['account']) ? $_GET['account'] : '', ['class' => 'form-control ', 'placeholder' => 'Select Account']) }}
{{ Form::label('vendor', __('Vendor'), ['class' => 'form-label']) }} {{ Form::select('vendor', $vendor, isset($_GET['vendor']) ? $_GET['vendor'] : '', ['class' => 'form-control ', 'placeholder' => 'Select Vendor']) }}
{{ Form::label('category', __('Category'), ['class' => 'form-label']) }} {{ Form::select('category', $category, isset($_GET['category']) ? $_GET['category'] : '', ['class' => 'form-control ', 'placeholder' => 'Select Category']) }}
{{ $dataTable->table(['width' => '100%']) }}
@endsection