File "UsersImport-20250405101605.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Imports/UsersImport-20250405101605.php
File size: 780 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Imports;
use App\Models\User;
use Illuminate\Support\Facades\Hash;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithHeadingRow;
class UsersImport implements ToModel, WithHeadingRow
{
/**
* @param array $row
*
* @return \Illuminate\Database\Eloquent\Model|null
*/
public function model(array $row)
{
return new User([
'name' => $row['name'],
'email' => $row['email'],
'username' => $row['username'],
'phone' => $row['phone_number'],
'country' => $row['country'],
'password' => Hash::make('password'),
'email_verified_at' => now(),
]);
}
}