<?php

return [
    /*
    |--------------------------------------------------------------------------
    | Language files for allocation in account package
    |--------------------------------------------------------------------------
    |
    | The following language lines are  for  allocation module in account package
    | and it is used by the template/view files in this module
    |
    */

    /**
     * Singlular and plural name of the module
     */
    'name' => 'Allocation',
    'names' => 'Allocations',
    'icon' => 'las la-list',

    /**
     * Singlular and plural name of the module
     */
    'title' => [
        'main' => 'Allocations',
        'sub' => 'Allocations'
    ],

    /**
     * Singlular and plural name of the module
     */
    'groups'         => [
        'main' => 'Main',
        'images' => 'Images',
        'details' => 'Details',
        'settings' => 'Settings'
    ],

    /**
     * Form sub section name for the module.
     */
    'sections' => [
        'main' => 'Main',
        'details' => 'Details',
    ],

    /**
     * Options for select/radio/check.
     */
    'options'       => [
        'type' => 
            [
                                
                [
                    'key'    => 'Payment',
                    'value'  => 'Payment',
                    'text'   => 'Payment',
                ],
                                
                [
                    'key'    => 'Receipt',
                    'value'  => 'Receipt',
                    'text'   => 'Receipt',
                ],
                                
                [
                    'key'    => 'Sales Return',
                    'value'  => 'Sales Return',
                    'text'   => 'Sales Return',
                ],
                                
                [
                    'key'    => 'Purchase Return',
                    'value'  => 'Purchase Return',
                    'text'   => 'Purchase Return',
                ],
                                
                [
                    'key'    => 'Credit Note',
                    'value'  => 'Credit Note',
                    'text'   => 'Credit Note',
                ],
                                
                [
                    'key'    => 'Debit Note',
                    'value'  => 'Debit Note',
                    'text'   => 'Debit Note',
                ],
                                
                [
                    'key'    => 'Journal',
                    'value'  => 'Journal',
                    'text'   => 'Journal',
                ],
                                
            ],

        'status' => 
            [
                                
                [
                    'key'    => 'Completed',
                    'value'  => 'Completed',
                    'text'   => 'Completed',
                ],
                                
                [
                    'key'    => 'Pending',
                    'value'  => 'Pending',
                    'text'   => 'Pending',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'date'                       => 'Please select date',
        'type'                       => 'Please select type',
        'allocatable_id'             => 'Please enter allocatable id',
        'allocatable_type'           => 'Please enter allocatable type',
        'customer_id'                => 'Please enter customer id',
        'customer_name'              => 'Please enter customer name',
        'coa_id'                     => 'Please enter coa id',
        'coa_name'                   => 'Please enter coa name',
        'payment'                    => 'Please enter payment',
        'receipt'                    => 'Please enter receipt',
        'allo_tranTypeName'          => 'Please enter allo tranTypeName',
        'allo_tranDocID'             => 'Please enter allo tranDocID',
        'Journal'                    => 'Please select Journal',
        'doc_code'                   => 'Please enter doc code',
        'Journal'                    => 'Please select Journal',
        'doc_date'                   => 'Please select doc date',
        'Journal'                    => 'Please select Journal',
        'doc_amount'                 => 'Please enter doc amount',
        'Journal'                    => 'Please select Journal',
        'allo_tranAlloOutstanding'        => 'Please enter allo tranAlloOutstanding',
        'status'                     => 'Please select status',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'date'                       => 'Date',
        'type'                       => 'Type',
        'allocatable_id'             => 'Allocatable id',
        'allocatable_type'           => 'Allocatable type',
        'customer_id'                => 'Customer id',
        'customer_name'              => 'Customer name',
        'coa_id'                     => 'Coa id',
        'coa_name'                   => 'Coa name',
        'payment'                    => 'Payment',
        'receipt'                    => 'Receipt',
        'allo_tranTypeName'          => 'Allo tranTypeName',
        'allo_tranDocID'             => 'Allo tranDocID',
        'Journal'                    => 'Journal',
        'doc_code'                   => 'Doc code',
        'Journal'                    => 'Journal',
        'doc_date'                   => 'Doc date',
        'Journal'                    => 'Journal',
        'doc_amount'                 => 'Doc amount',
        'Journal'                    => 'Journal',
        'allo_tranAlloOutstanding'        => 'Allo tranAlloOutstanding',
        'status'                     => 'Status',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    
    ];