PrintTemplate.php 267 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class PrintTemplate extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $fillable = ['name','value'];
  9. protected $casts = [
  10. 'value' => 'array'
  11. ];
  12. }