18 lines
		
	
	
		
			296 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			296 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
 | 
						|
namespace App\View\Components\Private;
 | 
						|
 | 
						|
use Illuminate\View\Component;
 | 
						|
use Illuminate\View\View;
 | 
						|
 | 
						|
final class Layout extends Component
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @inheritDoc
 | 
						|
     */
 | 
						|
    public function render(): View
 | 
						|
    {
 | 
						|
        return view('private.layout.app');
 | 
						|
    }
 | 
						|
}
 |