mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2025-12-02 04:04:43 -05:00
Initial Commit
This commit is contained in:
commit
cc2af611e1
148 changed files with 54234 additions and 0 deletions
20
database/seeders/DatabaseSeeder.php
Normal file
20
database/seeders/DatabaseSeeder.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
\App\Models\User::factory(10)->create();
|
||||
\App\Models\Meme::factory(80)->create();
|
||||
// \App\Models\Tip::factory(500)->create();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue