1
0
Fork 0
pixelfed/app/Http/Controllers/TimelineController.php

19 lines
281 B
PHP
Raw Normal View History

2018-04-16 01:56:17 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class TimelineController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
public function personal()
{
return view('timeline.personal');
}
}