CHaNStar

03

Apr 7th, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6. use Illuminate\Support\Facades\DB;
  7.  
  8. class KelasController extends Controller
  9. {
  10. public function index()
  11. {
  12. $data['kelas'] = DB::table('t_kelas')->get();
  13. return view('kelas', $data);
  14. }
  15. }
Add Comment
Please, Sign In to add comment