LoginSignup
1
0

More than 3 years have passed since last update.

Laravel で画像サイトマップを作る

Posted at

Laravelium/laravel-sitemapを使う

インストール方法は以下
https://github.com/Laravelium/laravel-sitemap

サンプル

add関数の第5引数が画像サイトマップ用の値。
公式には見当たらなかったのでメモ。


public function toXmlFile(){
  $sitemap = \App::make('sitemap');
  $sitemap->add(
    "http://sample.com/spot/1",  // page url
    "2021-01-12T00:00:00+00:00", // last modified
    0.6,                         // priority
    "yearly",                    // frequency
    [                            // 画像サイトマップの設定
      [
       'url' => "http://sample.com/spot/1.jpg",
       'title' => "サンプルタイトル",
       'caption' => "このサンプルは日本語",
       'geo_location' => "東京都、新宿区",
       'license' => "http://sample.com"
      ]
    ]
  );
}

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0