fadlyshafa

Untitled

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