fadlyshafa

Untitled

Oct 24th, 2019
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. Route::get('add-admin',function(){
  2.     \App\User::insert([
  3.         'name'=>'admin',
  4.         'email'=>'[email protected]',
  5.         'password'=>bcrypt('123'),
  6.         'created_at'=>date('Y-m-d H:i:s'),
  7.         'updated_at'=>date('Y-m-d H:i:s'),
  8.         'role'=>1
  9.     ]);
  10.     echo 'sukses';
  11. });
Advertisement
Add Comment
Please, Sign In to add comment