37 lines
889 B
PHP
37 lines
889 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\penyuluh;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Contracts\Pagination\Paginator;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\artikel;
|
|
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
// $this->middleware('auth');
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
|
|
// $data = [
|
|
// 'artikel' => Artikel::orderBy('tanggal', 'desc')->paginate(2),
|
|
// ];
|
|
// return view('petugas.home',compact('data'));
|
|
$data = [
|
|
'artikel' => DB::table('artikel')->join('kategori_artikel', 'kategori_artikel.id_ktg', '=', 'artikel.id_ktg')
|
|
->orderBy('id_artikel','desc')
|
|
->where('status','=','tampil')
|
|
->paginate(2),
|
|
];
|
|
return view('penyuluh.home',compact('data'));
|
|
|
|
}
|
|
|
|
}
|