Advertisement
fadlyshafa

Untitled

Aug 30th, 2019
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7. class Beranda_controller extends Controller
  8. {
  9.     public function index(){
  10.         $title = 'Beranda Admin';
  11.  
  12.         return view('beranda.beranda_index',compact('title'));
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement