CustomerTag.php 220 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use App\Traits\ModelTimeFormat;
  4. use Illuminate\Database\Eloquent\Model;
  5. class CustomerTag extends Model
  6. {
  7. use ModelTimeFormat;
  8. protected $fillable=[
  9. "name","explanation"
  10. ];
  11. }