21 lines
		
	
	
		
			477 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			477 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Support\Facades\Log;
 | 
						|
use Inertia\Inertia;
 | 
						|
 | 
						|
class TentangController extends Controller
 | 
						|
{
 | 
						|
    public function index()
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            return Inertia::render('admin/navBottom/index_tentang');
 | 
						|
        } catch (\Exception $e) {
 | 
						|
            Log::error('Error rendering view: ' . $e->getMessage());
 | 
						|
            return back()->with('error', 'Something went wrong.');
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |