Skip to main content

Overriding Page

Each CRUD generated from the CRUD generator uses the same page. However, there are times when the page must be changed as needed. Badaso provides features for custom pages. For this custom page, Badaso will check whether any pages are created on the custom page, if not, Badaso will use the default page.

Badaso assumes that the user is familiar with the basics of vue. Therefore Badaso doesn't explain how to create components in vue.

info

You can override all pages in the pages directory except index.vue.

Overriding CRUD Generated Page#

Here are the steps for creating a custom view to customize the appearance of the CRUD Generated.

  • Create a vue file on the resource like the following structure.
๐Ÿ“ฆ Your Projectโ”ฃ ๐Ÿ“‚ resourcesโ”ƒ โ”ฃ ๐Ÿ“‚ jsโ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ badasoโ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ pagesโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ {slug} /** put the override you want here, for example book-management **/โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ browse.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ read.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ edit.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ add.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”— ๐Ÿ“œ sort.vue

Note:

  • browse.vue: Add if you need to change the appearance of the index / list.
  • read.vue: Add if you need to change the appearance of the detail page.
  • edit.vue: Add if you need to change the appearance of the edit page.
  • add.vue: Add if you need to change the appearance of the add page.
  • sort.vue: Add if you need to change the appearance of the sort page.

Overriding Badaso Default Pages#

Here are the steps for creating a custom view to customize the appearance of the page except Crud Generated and index.vue.

  • Create a vue file on the resource like the following structure.
๐Ÿ“ฆ Your Projectโ”ฃ ๐Ÿ“‚ resourcesโ”ƒ โ”ฃ ๐Ÿ“‚ jsโ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ badasoโ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ pagesโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ {badaso-pages} /** put the override you want here, for example database-management **/โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ browse.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ read.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ edit.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“œ add.vueโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”— ๐Ÿ“œ sort.vue

You can find badaso-pages at

๐Ÿ“ฆ Your Projectโ”ฃ ๐Ÿ“‚ vendorโ”ƒ โ”ฃ ๐Ÿ“‚ badasoโ”ƒ โ”ƒ โ”ฃ  ๐Ÿ“‚ coreโ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ srcโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ resourcesโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ jsโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ pagesโ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ƒ โ”ฃ ๐Ÿ“‚ {badaso-pages} /** HERE **/

Note:

  • browse.vue: Add if you need to change the appearance of the index / list.
  • read.vue: Add if you need to change the appearance of the detail page.
  • edit.vue: Add if you need to change the appearance of the edit page.
  • add.vue: Add if you need to change the appearance of the add page.
  • sort.vue: Add if you need to change the appearance of the sort page.