add dashboard potential

This commit is contained in:
arifal
2025-02-19 06:15:35 +07:00
parent 6c936d4c14
commit 116dc1c8c7
14 changed files with 614 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers\Dashboards;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class LackOfPotentialController extends Controller
{
public function lack_of_potential(){
return view('dashboards.lack_of_potential');
}
}