forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
811 B
PHP
30 lines
811 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Cat;
|
|
use App\Models\Product;
|
|
use Illuminate\Http\Request;
|
|
use Xmen\StarterKit\Models\Post;
|
|
|
|
class SitemapController extends Controller
|
|
{
|
|
//
|
|
public function index(){
|
|
return response()->view('sitemap.main')->header('Content-Type', 'text/xml');
|
|
}
|
|
|
|
public function products(){
|
|
$items = Product::where('active',1)->orderByDesc('updated_at')->get();
|
|
return view('sitemap.products',compact('items'));
|
|
}
|
|
public function cats(){
|
|
$items = Cat::orderByDesc('updated_at')->get();
|
|
return view('sitemap.cats',compact('items'));
|
|
}
|
|
public function posts(){
|
|
$items = Post::where('status',1)->orderByDesc('updated_at')->get();
|
|
return view('sitemap.posts',compact('items'));
|
|
}
|
|
}
|