<?php

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

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

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

    /**
     * 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'       => [
        
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please select id',
        'user_id'                    => 'Please select user id',
        'payment_id'                 => 'Please select payment id',
        'invoice_id'                 => 'Please select invoice id',
        'total_amount'               => 'Please select total amount',
        'payment_status'             => 'Please select payment status',
        'order_status'               => 'Please select order status',
        'shipping_address'           => 'Please select shipping address',
        'billing_address'            => 'Please select billing address',
        'payment_method'             => 'Please select payment method',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'user_id'                    => 'User id',
        'payment_id'                 => 'Payment id',
        'invoice_id'                 => 'Invoice id',
        'total_amount'               => 'Total amount',
        'payment_status'             => 'Payment status',
        'order_status'               => 'Order status',
        'shipping_address'           => 'Shipping address',
        'billing_address'            => 'Billing address',
        'payment_method'             => 'Payment method',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],

    
    ];