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