OwnerFeeOperationDetail.php 344 B

123456789101112131415161718192021
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class OwnerFeeOperationDetail extends Model
  6. {
  7. use ModelLogChanging;
  8. public $timestamps = false;
  9. protected $fillable = [
  10. "owner_fee_operation_id",
  11. "name",
  12. "amount",
  13. "price",
  14. "unit_id",
  15. ];
  16. }