123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
-
- namespace App\Http\Controllers\Admin;
-
- use App\Helpers\Helper;
- use App\Http\Controllers\Controller;
-
- use Illuminate\Support\Facades\DB;
-
- ;
- use Carbon\Carbon;
- use Illuminate\Support\Str;
- use Auth;
-
-
- use App\Utils\DashboardUtil;
-
-
- use App\Model\Logistik\ManajemenKantong;
- use App\Model\Master\Reagen;
- use App\Model\Master\ItemKantongs;
- use App\Model\Master\MasterJenisKantong;
- use App\Model\Master\MerkReagen;
- use App\Model\Master\Reagens;
- use GuzzleHttp\Psr7\Request;
-
- class DashboardController extends Controller
- {
-
-
- private $title = 'Admin';
- private $route = 'admin.dashboard.';
- protected $DashboardUtil;
- public function __construct(DashboardUtil $DashboardUtil)
- {
- $this->DashboardUtil = $DashboardUtil;
- DB::enableQueryLog();
- }
-
- public function index()
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $data = [
-
- 'title' => $this->title,
- 'route' => $this->route,
-
-
-
-
-
-
-
-
-
-
-
-
-
- ];
-
- return view($this->route . 'index', $data);
- }
- }
|