mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-26 23:07:59 +01:00
32 lines
622 B
PHP
32 lines
622 B
PHP
|
<?php
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\User;
|
||
|
|
||
|
class ArtistsController extends Controller
|
||
|
{
|
||
|
public function getIndex()
|
||
|
{
|
||
|
return View::make('artists.index');
|
||
|
}
|
||
|
|
||
|
public function getProfile($slug)
|
||
|
{
|
||
|
$user = User::whereSlug($slug)->first();
|
||
|
if (!$user) {
|
||
|
App::abort('404');
|
||
|
}
|
||
|
|
||
|
return View::make('artists.profile');
|
||
|
}
|
||
|
|
||
|
public function getShortlink($id)
|
||
|
{
|
||
|
$user = User::find($id);
|
||
|
if (!$user) {
|
||
|
App::abort('404');
|
||
|
}
|
||
|
|
||
|
return Redirect::action('ArtistsController@getProfile', [$id]);
|
||
|
}
|
||
|
}
|