forked from miguel456/rbrecruiter
RSM-8 Add team files page and ability to download files
This commit is contained in:
19
database/seeders/TeamFileSeeder.php
Normal file
19
database/seeders/TeamFileSeeder.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\TeamFile;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class TeamFileSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
TeamFile::factory()->count(50)->create();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user