19 lines
437 B
PHP
19 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Perkembangan;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PerkembanganController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$data = Perkembangan::with('kandang',"kandang.peternakan","bibit")
|
|
->orderBy("perkembangan.id","DESC")
|
|
->get();
|
|
$type_menu = "Perkembangan";
|
|
return view('perkembangan.index', compact('type_menu', 'data'));
|
|
}
|
|
}
|