'Album', 'names' => 'Albums', /** * Singlular and plural name of the module */ 'title' => [ 'main' => 'Albums', 'sub' => 'Albums', 'list' => 'List of albums', 'edit' => 'Edit album', 'create' => 'Create new album' ], /** * Options for select/radio/check. */ 'options' => [ 'genre' => ['general','electronic','devotional','devotional','folk','fusion','disco','dance'], 'status' => ['show','hide'], ], /** * Placeholder for inputs */ 'placeholder' => [ 'id' => 'Please enter id', 'title' => 'Please enter title', 'artists' => 'Please enter artists', 'description' => 'Please enter description', 'price' => 'Please enter price', 'thumbnail' => 'Please enter thumbnail', 'genre' => 'Please select genre', 'status' => 'Please select status', 'release_date' => 'Please select release date', 'deleted_at' => 'Please select deleted at', 'created_at' => 'Please select created at', 'updated_at' => 'Please select updated at', ], /** * Labels for inputs. */ 'label' => [ 'id' => 'Id', 'title' => 'Title', 'artists' => 'Artists', 'description' => 'Description', 'price' => 'Price', 'thumbnail' => 'Thumbnail', 'genre' => 'Genre', 'status' => 'Status', 'release_date' => 'Release date', 'deleted_at' => 'Deleted at', 'created_at' => 'Created at', 'updated_at' => 'Updated at', ], /** * Columns array for show hide checkbox. */ 'cloumns' => [ 'title' => ['name' => 'Title', 'data-column' => 1, 'checked'], 'artists' => ['name' => 'Artists', 'data-column' => 2, 'checked'], 'description' => ['name' => 'Description', 'data-column' => 3, 'checked'], 'price' => ['name' => 'Price', 'data-column' => 4, 'checked'], 'thumbnail' => ['name' => 'Thumbnail', 'data-column' => 5, 'checked'], 'genre' => ['name' => 'Genre', 'data-column' => 6, 'checked'], 'release_date' => ['name' => 'Release date', 'data-column' => 7, 'checked'], ], /** * Tab labels */ 'tab' => [ 'name' => 'Albums', ], /** * Texts for the module */ 'text' => [ 'preview' => 'Click on the below list for preview', ], ];