'BlogPost', 'names' => 'BlogPosts', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'BlogPosts', 'sub' => 'BlogPosts', 'list' => 'List of blog_posts', 'edit' => 'Edit blog_post', 'create' => 'Create new blog_post' ], /** * Options for select/radio/check. */ 'options' => [ ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'user_id' => 'Please enter user id', 'blog_category_id' => 'Please enter blog category id', 'cover' => 'Please enter cover', 'title' => 'Please enter title', 'slug' => 'Please enter slug', 'intro' => 'Please enter intro', 'content' => 'Please enter content', 'meta_title' => 'Please enter meta title', 'meta_keywords' => 'Please enter meta keywords', 'meta_description' => 'Please enter meta description', 'posted_at' => 'Please select posted at', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'user_id' => 'User id', 'blog_category_id' => 'Blog category id', 'cover' => 'Cover', 'title' => 'Title', 'slug' => 'Slug', 'intro' => 'Intro', 'content' => 'Content', 'meta_title' => 'Meta title', 'meta_keywords' => 'Meta keywords', 'meta_description' => 'Meta description', 'posted_at' => 'Posted at', 'created_at' => 'Created at', 'updated_at' => 'Updated at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'blog_category_id' => ['name' => 'Blog category id', 'data-column' => 1, 'checked'], 'cover' => ['name' => 'Cover', 'data-column' => 2, 'checked'], 'title' => ['name' => 'Title', 'data-column' => 3, 'checked'], 'intro' => ['name' => 'Intro', 'data-column' => 4, 'checked'], 'content' => ['name' => 'Content', 'data-column' => 5, 'checked'], 'meta_title' => ['name' => 'Meta title', 'data-column' => 6, 'checked'], 'meta_keywords' => ['name' => 'Meta keywords', 'data-column' => 7, 'checked'], 'meta_description' => ['name' => 'Meta description', 'data-column' => 8, 'checked'], 'posted_at' => ['name' => 'Posted at', 'data-column' => 9, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'BlogPosts', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];