PlanConverter.php 230 B

123456789101112
  1. <?php
  2. namespace App\Services\History\Converter;
  3. use App\Models\Plan;
  4. class PlanConverter extends ModelConverter
  5. {
  6. protected static string $modelClassName = Plan::class;
  7. protected static string $pluckField = "title";
  8. }