CustomerLog.php 405 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  5. class CustomerLog extends Model
  6. {
  7. protected $fillable = ['customer_id', 'customer_log_status_id', 'user_id', 'description'];
  8. protected $guarded = ['id'];
  9. public function customerLogStatus(): BelongsTo
  10. {
  11. return $this->belongsTo(CustomerLogStatus::class);
  12. }
  13. }