Directory : /home/aplikasiposinfo/www/paraduta.fixmate.id/app/Http/Controllers/ |
Current File : /home/aplikasiposinfo/www/paraduta.fixmate.id/app/Http/Controllers/ReviewPelangganController.php |
<?php namespace App\Http\Controllers; use App\Models\Pelanggan; use App\Models\ReviewPelanggan; use Illuminate\Http\Request; class ReviewPelangganController extends Controller { public function index(){ $datas = ReviewPelanggan::with('pelanggan')->latest()->paginate(10); return view('review_pelanggan.index',compact('datas')); } }