@extends('layouts.main') @section('page-title') {{ __('Manage Revenues') }} @endsection @section('page-breadcrumb') {{ __('Revenues') }} @endsection @push('css') @include('layouts.includes.datatable-css') @endpush @section('page-action')
@stack('addButtonHook') @if (module_is_active('ProductService')) @endif @permission('revenue create') @endpermission
@endsection @section('content')
{{ Form::label('date', __('Date'), ['class' => 'form-label']) }} {{ Form::text('date', isset($_GET['date']) ? $_GET['date'] : null, ['class' => 'month-btn 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('customer', __('Customer'), ['class' => 'form-label']) }} {{ Form::select('customer', $customer, isset($_GET['customer']) ? $_GET['customer'] : '', ['class' => 'form-control ', 'placeholder' => 'Select Customer']) }}
{{ 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 @push('scripts') @include('layouts.includes.datatable-js') {{ $dataTable->scripts() }} @endpush