for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Ship\Seed;
use Rudra\Auth\AuthFacade as Auth;
class Users_21012021144905_seed extends AbstractSeed
{
public function create(): void
$table = "users";
$fields = [
"name" => "Admin",
"email" => "[email protected]",
"password" => Auth::bcrypt('password'),
"role" => "admin",
"status" => 1,
];
$this->execute($table, $fields);
}