v1.5.14 - Added Allow Actions (Registering)

Fixed User Pictures
This commit is contained in:
Anders
2021-04-26 13:02:17 +02:00
parent fe1cda993a
commit d0d74cdb96
43 changed files with 214 additions and 34085 deletions
@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Seeder;
class AllowActionsSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$allowactiondata = [
[
'action' => 'Registering'
]
];
foreach ($allowactiondata as $data) {
$allowaction = new \App\AllowAction();
$allowaction->action = $data['action'];
$allowaction->save();
}
}
}