ReportLog.php 204 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ReportLog extends Model
  5. {
  6. protected $guarded = [];
  7. public function profile()
  8. {
  9. return $this->belongsTo(Profile::class);
  10. }
  11. }