Advertisement
fadlyshafa

Untitled

Mar 1st, 2020
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7. use App\Models\M_supplier;
  8.  
  9. class Supplier_controller extends Controller
  10. {
  11.     public function index(){
  12.         $title = 'Master Data Supplier';
  13.         $data = M_supplier::orderBy('nama','asc')->get();
  14.  
  15.         return view('supplier.index',compact('title','data'));
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement