fadlyshafa

Untitled

Feb 13th, 2020
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers\Dashboard;
  4.  
  5. use Illuminate\Http\Request;
  6. use App\Http\Controllers\Controller;
  7.  
  8. use App\User;
  9.  
  10. class Peserta_controller extends Controller
  11. {
  12.     public function index(){
  13.         $title = 'Data peserta';
  14.         $data = User::withCount('biodata_r')->orderBy('name','asc')->get();
  15.  
  16.         return view('dashboard.peserta.index',compact('title','data'));
  17.     }
  18. }
Add Comment
Please, Sign In to add comment