<?php

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

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

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

    /**
     * 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'       => [
        'availability'        => ['available','not available'],
            'status'              => ['show','hide'],
    ],

    /**
     * Placeholder for inputs
     */
    'placeholder'   => [
        'id'                         => 'Please enter id',
        'seller_id'                  => 'Please enter seller id',
        'product_id'                 => 'Please enter product id',
        'name'                       => 'Please enter name',
        'category_id'                => 'Please enter category id',
        'brand_id'                   => 'Please enter brand id',
        'price'                      => 'Please enter price',
        'tax_rate'                   => 'Please enter tax rate',
        'tax_amount'                 => 'Please enter tax amount',
        'total'                      => 'Please enter total',
        'description'                => 'Please enter description',
        'model'                      => 'Please enter model',
        'highlights'                 => 'Please enter highlights',
        'size'                       => 'Please enter size',
        'quantity'                   => 'Please enter quantity',
        'services'                   => 'Please enter services',
        'features'                   => 'Please enter features',
        'specifications'             => 'Please enter specifications',
        'availability'               => 'Please select availability',
        'status'                     => 'Please select status',
        'slug'                       => 'Please enter slug',
        'images'                     => 'Please enter images',
        'user_id'                    => 'Please enter user id',
        'user_type'                  => 'Please enter user type',
        'created_at'                 => 'Please select created at',
        'updated_at'                 => 'Please select updated at',
        'deleted_at'                 => 'Please select deleted at',
    ],

    /**
     * Labels for inputs.
     */
    'label'         => [
        'id'                         => 'Id',
        'seller_id'                  => 'Seller id',
        'product_id'                 => 'Product id',
        'name'                       => 'Name',
        'category_id'                => 'Category id',
        'brand_id'                   => 'Brand id',
        'price'                      => 'Price',
        'tax_rate'                   => 'Tax rate',
        'tax_amount'                 => 'Tax amount',
        'total'                      => 'Total',
        'description'                => 'Description',
        'model'                      => 'Model',
        'highlights'                 => 'Highlights',
        'size'                       => 'Size',
        'quantity'                   => 'Quantity',
        'services'                   => 'Services',
        'features'                   => 'Features',
        'specifications'             => 'Specifications',
        'availability'               => 'Availability',
        'status'                     => 'Status',
        'slug'                       => 'Slug',
        'images'                     => 'Images',
        'user_id'                    => 'User id',
        'user_type'                  => 'User type',
        'created_at'                 => 'Created at',
        'updated_at'                 => 'Updated at',
        'deleted_at'                 => 'Deleted at',
    ],
];