@extends('layouts.smart_receipt_tester_default') @section('style') @endsection @section('content') {{-- Header --}}
{{-- logo --}}
sKale
{{-- title --}}

Smart Receipt Tester {{ app()->isLocal() ? 'Local Env' : '' }}

Upload a receipt image to test for the OCR results!
{{-- form components --}}
{{-- service type picker --}}
@component('admin.components.form_field', [ 'help' => '', 'class' => 'col-sm-6 col-md-4 my-0 mb-1', 'label' => '', 'required' => true, 'description' => '', 'hasError' => false, ]) @component('components.smart_receipt.service_type', ['id' => 'service_type']) @endcomponent @endcomponent
{{-- file picker --}}
@component('admin.components.form_field', [ 'help' => '', 'class' => 'col-sm-6 col-md-4', 'label' => '', 'required' => true, 'description' => '', 'hasError' => false, ])
@endcomponent
{{-- Past Image Selector --}} @if($historyOpt ?? false)
@component('admin.components.form_field', [ 'help' => '', 'class' => 'col-sm-6 col-md-4 my-0 mb-1', 'label' => '', 'required' => false, 'description' => '', 'hasError' => false, ]) @php $id = 'img_logs'; $switcher = app()->isLocal(); @endphp
@if($switcher) @endif @if($switcher) @endif {{-- @if(app()->isLocal()) --}} {{-- @endif --}}
@endcomponent
@endif
{{-- export btn --}} @if($urlExport ?? null)
@endif
{{-- Content --}}
{{-- Receipt Viewer --}}
{{-- Result Viewer --}}
Pass Fail -
Yes No -
Yes No -
Item Line:
{{-- popup modal --}} @component('components.utility.template_popup', [ 'hideFooter' => 1, 'id' => 'popup_' . ($cropper_id = 'cropper'), ]) @slot('slot_header') Logo @endslot @component('components.utility.receipt_cropper', ['id' => $cropper_id]) @endcomponent @endcomponent {{-- loading --}} @component('components.utility.loading', ['is_hidden' => 1, 'label' => 'Extracting']) @endcomponent @endsection @section('script') @endsection