<?php

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

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

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

    /**
     * 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'       => [
        'status' => 
            [
                                
                [
                    'key'    => 'Draft',
                    'value'  => 'Draft',
                    'text'   => 'Draft',
                ],
                                
                [
                    'key'    => 'Completed',
                    'value'  => 'Completed',
                    'text'   => 'Completed',
                ],
                                
                [
                    'key'    => 'Approved',
                    'value'  => 'Approved',
                    'text'   => 'Approved',
                ],
                                
            ],

        'type' => 
            [
                                
                [
                    'key'    => 'receipt',
                    'value'  => 'receipt',
                    'text'   => 'receipt',
                ],
                                
                [
                    'key'    => 'payment',
                    'value'  => 'payment',
                    'text'   => 'payment',
                ],
                                
                [
                    'key'    => 'acknowledgement',
                    'value'  => 'acknowledgement',
                    'text'   => 'acknowledgement',
                ],
                                
            ],

        'deal_customer_type' => 
            [
                                
                [
                    'key'    => 'Buyer',
                    'value'  => 'Buyer',
                    'text'   => 'Buyer',
                ],
                                
                [
                    'key'    => 'Seller',
                    'value'  => 'Seller',
                    'text'   => 'Seller',
                ],
                                
                [
                    'key'    => 'Conveyancing',
                    'value'  => 'Conveyancing',
                    'text'   => 'Conveyancing',
                ],
                                
                [
                    'key'    => 'Both',
                    'value'  => 'Both',
                    'text'   => 'Both',
                ],
                                
            ],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'company_id'                 => 'Please enter company id',
        'customer_id'                => 'Please enter customer id',
        'coa_id'                     => 'Please enter coa id',
        'agent_id'                   => 'Please enter agent id',
        'ref'                        => 'Please enter ref',
        'unit'                       => 'Please enter unit',
        'date'                       => 'Please select date',
        'project_name'               => 'Please enter project name',
        'building'                   => 'Please enter building',
        'project_price'              => 'Please enter project price',
        'amount'                     => 'Please enter amount',
        'currency'                   => 'Please enter currency',
        'remarks'                    => 'Please enter remarks',
        'status'                     => 'Please select status',
        'type'                       => 'Please select type',
        'deal_customer_type'         => 'Please select deal customer type',
        'user_id'                    => 'Please enter user id',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'company_id'                 => 'Company id',
        'customer_id'                => 'Customer id',
        'coa_id'                     => 'Coa id',
        'agent_id'                   => 'Agent id',
        'ref'                        => 'Ref',
        'unit'                       => 'Unit',
        'date'                       => 'Date',
        'project_name'               => 'Project name',
        'building'                   => 'Building',
        'project_price'              => 'Project price',
        'amount'                     => 'Amount',
        'currency'                   => 'Currency',
        'remarks'                    => 'Remarks',
        'status'                     => 'Status',
        'type'                       => 'Type',
        'deal_customer_type'         => 'Deal customer type',
        'user_id'                    => 'User id',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    
    ];