20 lines
360 B
PHP
20 lines
360 B
PHP
<?php
|
|
|
|
namespace Koneko\VuexyWebsiteAdmin\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class SitemapController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
return view('vuexy-website-admin::sitemap-manager.index');
|
|
}
|
|
|
|
}
|