Advertisement
fadlyshafa

Untitled

Feb 6th, 2020
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 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. class Beranda_controller extends Controller
  9. {
  10.     public function index(){
  11.         $title = 'Halaman Dashboard';
  12.  
  13.         return view('dashboard.beranda.index',compact('title'));
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement