Coder Social home page Coder Social logo

sitemap-generator's Introduction

Laravel Sitemap Generator

This sitemap generator can help you make sitemaps for your websites quick and easy. This package is based on dwightwatson/sitemap, but contains a number of different features and implementations.

Installation

Add this package via composer

composer require robertboes/sitemap-generator

Add the service provider to your app/config/app.php:

'providers' => [
    ...
    RobertBoes\SitemapGenerator\ServiceProvider::class,
];

Add the facade to your app/config/app.php:

'aliases' => [
    ...
    RobertBoes\SitemapGenerator\Facade::class,
];

Usage

Creating sitemaps

A sitemap can be generated in multiple ways. This way it should serve the needs of many websites.

Basic example

This could be very useful for static URL's

<?php
namespace app\Http\Controllers

use SitemapGenerator;

class SitemapController extends Controller {

    public function index() {
        $newestPostCreatedAt = Post::orderBy('created_at', 'desc')->first()->created_at;
    
        $map = SitemapGenerator::sitemap();
        $map->addLocation(route('home'));
        $map->addLocation(route('posts'), $newestPostCreatedAt, 'weekly');
        $map->addLocation(route('contact', null, null, '0.9'));
        return $map->render();
    }
}

It's also possible to link all the functions like this:

public function index() {
    return SitemapGenerator::sitemap()
        ->addLocation(route('home'))
        ->addLocation(route('faq', null, null, '0.9'))
        ->render();
}
public function posts() {
    SitemapGenerator::sitemap()
        ->addLocation(route('post', ['id' => 1]))
        ->addLocation(route('post', ['id' => 2]));
    
    return SitemapGenerator::sitemap()->render();
}

Video sitemaps

//TODO

Creating a sitemap index

For larger websites it's usefull to seperate the sitemap in multiple files, for example if you're hosting a website which serves lots of video's.

Config

Publish the config with the artisan command:

php artisan config:publish robertboes/sitemap-generator

See the config file app/config/sitemap-generator.php for more details on configuration

Todo's etc.

Initial commit

TODO:

  • Finish initial version
  • Readme
  • Tests
  • ...

sitemap-generator's People

Contributors

robertboes avatar

Watchers

 avatar  avatar

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.