Binkap S

Results 2 comments of Binkap S

Can you provide more details on this?

``` $sitemap = new Sitemap(config('app.url'), ['save_path' => public_path('sitemap')]); $sitemap->links(['name' => 'categories.xml', 'images' => false], function ($map) { Category::all()->each(function ($category) use ($map) { $map->loc("/category/{$category->slug}") ->freq('weekly')->priority('0.9') ->lastMod($category->updated_at->toDateString()); }); }); $sitemap->save(); ``` It's...