OwnerFeeStorage.php 364 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class OwnerFeeStorage extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $primaryKey = 'area_id';
  9. public $timestamps = false;
  10. protected $fillable = [
  11. "area_id", "counting_type", "using_type", "fee_description", "total_fee", "tax_rate"
  12. ];
  13. }