Giter VIP home page Giter VIP logo

Comments (1)

jitendra-webkul avatar jitendra-webkul commented on July 19, 2024

Achieving this is straightforward. Please follow the steps below:

Step 1: Implement the Sitemapable Interface in Your Model

First, implement the Spatie\Sitemap\Contracts\Sitemapable interface in your model and define the toSitemapTag method.

<?php

namespace Webkul\ACME\Models;

use Spatie\Sitemap\Contracts\Sitemapable;
use Spatie\Sitemap\Tags\Url;
use Webkul\Core\Eloquent\TranslatableModel;

class Blog extends TranslatableModel implements PageContract, Sitemapable
{
    /**
     * Convert the model instance to a sitemap tag.
     *
     * @return mixed
     */
    public function toSitemapTag(): Url|string|array
    {
        if (! $this->url_key) {
            return [];
        }

        return route('acme.blogs.view', $this->url_key);
    }
}

Step 2: Listen to Sitemap Events in Your Service Provider

Next, listen to the marketing.search_seo.sitemap.create.after and marketing.search_seo.sitemap.update.after events in your service provider and add the sitemap for the Blog model.

public function boot()
{
    Event::listen('marketing.search_seo.sitemap.create.after', [self::class, 'generateSitemap']);
    Event::listen('marketing.search_seo.sitemap.update.after', [self::class, 'generateSitemap']);
}

public function generateSitemap($sitemap)
{
    Sitemap::create()
        ->add(Url::create('/'))
        ->add(Category::all())
        ->add(Product::all())
        ->add(Page::all())
        ->add(Blog::all())
        ->writeToDisk('public', $sitemap->path.'/'.$sitemap->file_name);
}

from bagisto.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.