Files
kulakpos_web/Modules/Business/resources/views/purchases/invoice.blade.php
eko54r 05fd3230b8
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped
update marketing
2026-05-14 11:55:22 +07:00

16 lines
356 B
PHP

@extends('layouts.business.blank')
@section('title')
{{ __('Invoice') }}
@endsection
@section('main_content')
@if (invoice_setting($purchase->business_id) == '3_inch_80mm' && moduleCheck('ThermalPrinterAddon'))
@include('thermalprinteraddon::purchases.3_inch_80mm')
@else
@include('business::purchases.invoices.a4-size')
@endif
@endsection