Inuit sync of tax, product accounting, accounts and invoices
This commit is contained in:
16
app/Traits/ProviderRef.php
Normal file
16
app/Traits/ProviderRef.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Get a provider reference ID
|
||||
*/
|
||||
namespace App\Traits;
|
||||
|
||||
use App\Models\ProviderOauth;
|
||||
|
||||
trait ProviderRef
|
||||
{
|
||||
public function provider_ref(ProviderOauth $poo): ?string
|
||||
{
|
||||
return (($x=$this->providers->where('pivot.provider_oauth_id',$poo->id))->count() === 1) ? $x->pop()->pivot->ref : NULL;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user