kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			25 wiersze
		
	
	
		
			359 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			25 wiersze
		
	
	
		
			359 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
class DeckController extends Controller
 | 
						|
{
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        $this->middleware('auth');
 | 
						|
    }
 | 
						|
 | 
						|
    public function home()
 | 
						|
    {
 | 
						|
        return view('deck.index');
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    public function insights()
 | 
						|
    {
 | 
						|
        return view('deck.insights.index');
 | 
						|
    }
 | 
						|
}
 |