You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
226 B

3 years ago
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. *
  6. *
  7. *
  8. */
  9. class Action extends Model
  10. {
  11. protected $fillable = [
  12. 'action_handler_class',
  13. 'priority',
  14. 'source_id'
  15. ];
  16. }