Skip to content

Latest commit

 

History

History
72 lines (45 loc) · 1017 Bytes

README.md

File metadata and controls

72 lines (45 loc) · 1017 Bytes

tentacles

Monkey-patching for eloquent models

Composer install

composer require bulwark/tentacles:dev-master

user-model...

<? namespace App\User\Models;

use Illuminate\Database\Eloquent\Model;
use Bulwark\Tentacles\EloquentTentacle;

User extends Model {
  
  use EloquentTentacle;

}

ServiceProvider

<?php namespace App\Article\Providers;

use Illuminate\Support\ServiceProvider;
use App\Article\Models\Article;
use App\User\Models\User;


use Illuminate\Database\Eloquent\Model;

ArticleProvider extends ServiceProvider {

  public function register()
  {
    #..
  }
  
  public function boot()
  {
    User::addExternalMethod('articles', function()
    {
        return $this->hasMany(Article::class);
    });


    User::addExternalMethod('getFullnameAttribute', function()
    {
        return $this->first_name . ' ' . $this->last_name; 
    });
  }
  
}

Now we can do this:

$user = User::with('articles')->first();

$fullname = $user->fullname;