Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2.  
  3. use Illuminate\Support\Facades\Schema;
  4. use Illuminate\Database\Schema\Blueprint;
  5. use Illuminate\Database\Migrations\Migration;
  6. use App\User;
  7.  
  8.  
  9.     User::create([
  10.         'name' => 'д-р Тодор Тодоров',
  11.         'user_type' => '1',
  12.         'company' => 'Рандъм Сампъл',
  13.         'email' => 'ttodorov@randomsamp.com',
  14.         'password' => Hash::make('admin1'),
  15.         'remember_token' => ''
  16.     ]);
  17.  
  18.     echo 'Success';
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement