|
@@ -0,0 +1,28 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace Database\Factories;
|
|
|
+
|
|
|
+use App\Models\Teachers;
|
|
|
+use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
+
|
|
|
+class TeachersFactory extends Factory
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * The name of the factory's corresponding model.
|
|
|
+ *
|
|
|
+ * @var string
|
|
|
+ */
|
|
|
+ protected $model = Teachers::class;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Define the model's default state.
|
|
|
+ *
|
|
|
+ * @return array
|
|
|
+ */
|
|
|
+ public function definition()
|
|
|
+ {
|
|
|
+ return [
|
|
|
+ //
|
|
|
+ ];
|
|
|
+ }
|
|
|
+}
|