bug fixes on activity log and array_key_first alt using reset
This commit is contained in:
17
app/Http/Controllers/Finance/DashboardController.php
Normal file
17
app/Http/Controllers/Finance/DashboardController.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Finance;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
$data = [
|
||||
'page_title' => 'Finance | Dashboard'
|
||||
];
|
||||
|
||||
return view('finance.dashboard', $data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user