Advertisement
fadlyshafa

Untitled

Oct 16th, 2019
560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7. class Peminjaman_controller extends Controller
  8. {
  9.     public function store($id){
  10.         \DB::table('peminjaman')->insert([
  11.             'buku'=>$id,
  12.             'user'=>\Auth::user()->id,
  13.             'created_at'=>date('Y-m-d H:i:s')
  14.         ]);
  15.  
  16.         return redirect('master/buku');
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement