@extends('layouts.app') @section('title', __('Wizard Forms')) @section('content')
@foreach([ ['New Sale Wizard', 'Create invoice, select customer, add items, receive payment.', 'fa-file-invoice', route('invoices.create'), 'Start Sale'], ['New Purchase Wizard', 'Receive stock from supplier and record supplier payment.', 'fa-cart-arrow-down', route('purchases.create'), 'Start Purchase'], ['Stock Wizard', 'Add or adjust product, category, unit, and stock values.', 'fa-boxes-stacked', route('products.create'), 'Open Stock'], ['Payment Wizard', 'Pay supplier, customer invoice, or general outgoing cash.', 'fa-circle-up', route('payments.index'), 'Open Payment'], ['Received Wizard', 'Record customer receipt or general incoming cash.', 'fa-circle-down', route('payments.index'), 'Open Receipt'], ] as [$title, $text, $icon, $url, $action])
{{ __($title) }}

{{ __($text) }}

{{ __($action) }}
@endforeach
@endsection