badaso/sitemap-module

Zero development for blog system on badaso

Maintainers

👁 kizeh

Package info

github.com/uasoft-indonesia/badaso-sitemap-module

Homepage

pkg:composer/badaso/sitemap-module

Fund package maintenance!

Open Collective

uasoft-indonesia

Statistics

Installs: 375

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 1

2.0.0-rc.1 2021-07-08 16:04 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

proprietary 3a4b733f5ec8d205dbc5f9a389661ab823b59fed

  • UASOFT <hello.woop@uatech.co.id>

admingeneratorblogpanellaraveldashboardvuepwabadaso

This package is auto-updated.

Last update: 2026-06-29 02:33:26 UTC


README

Installation

  1. Install Badaso from laravel project
  2. Install badaso sitemap module composer require badaso/sitemap-module
  3. Set env
MIX_DEFAULT_MENU=admin
MIX_BADASO_MENU=${MIX_DEFAULT_MENU},sitemap-module
MIX_BADASO_PLUGINS=sitemap-module
  1. Call command php artisan badaso-sitemap:setup
  2. Run the laravel project and call url http://your-laravel-host/sitemap.xml

Configuration

file config.php configuration

return [
 'max_content_paginate' => 500,
 'prefix' => '/',
 'sitemap' => [
 'badaso-blog' => [
 'table' => 'posts',
 'web-access' => [
 'url' => env('MIX_BLOG_POST_URL_PREFIX').'/:slug',
 // :slug is a field in table posts
 // this url auto generate according to the number of table rows
 ],
 ],
 ...
 ],
 'custom_sitemap' => [
 'root' => [
 '/' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 'sub-path' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 'sub-path/sub-path-other' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 ...
 ],
 ...
 ],
];

Your can get foreign table attribute

...
'sitemap' => [
 'badaso-blog' => [
 'table' => 'posts',
 'web-access' => [
 'url' => env('MIX_BLOG_POST_URL_PREFIX').'/:posts.category_id,category.id,category.title',
 // posts.category_id => foreign key posts table field category_id
 // category.id => posts table category_id field reference to table category field id 
 // category.title => output value to path url from category table title field
 // output : http://{HOST}/{MIX_BLOG_POST_URL_PREFIX}/business
 ],
 ],
 ...
],
...

You can create custom sitemap url

...
'custom_sitemap' => [
 // group by http://{HOST}/roo/sitemap.xml
 'root' => [
 // http://{HOST}/root
 '/' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 // http://{HOST}/sub-path
 'sub-path' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 // http://{HOST}/sub-path/sub-path-othe
 'sub-path/sub-path-other' => [
 'lastmod' => '2021-05-24T09:32:52.785Z',
 ],
 ...
 ],
 ...
],
...