Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
imaliapitest
/
database
/
seeds
:
UserClientsTableSeeder.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Database\Seeder; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Str; class UserClientsTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('user_clients')->insert([ '0' => [ 'name' => 'Miguel', 'institution' => 'Kaya', 'nuit' => '124578941', 'email' => 'admin@teste.com', 'password' => Hash::make('12345678'), 'phone' => '845030902', 'created_at' => now(), 'updated_at' => now() ], ]); } }