This commit is contained in:
Ryan Chandler
2022-01-04 12:06:56 +00:00
commit 3e708cf4c5
33 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace VendorName\Skeleton\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/*
class ModelFactory extends Factory
{
protected $model = YourModel::class;
public function definition()
{
return [
];
}
}
*/