Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 10, 2020 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6230545c5da7c796312049dd7ea590f1 to your computer and use it in GitHub Desktop.
Save parzibyte/6230545c5da7c796312049dd7ea590f1 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Responsable extends Model
{
public function area()
{
return $this->belongsTo("App\Area", "areas_id");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment