for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Wallet\Test\Models;
use Bavix\Wallet\Traits\CanBePaid;
use Bavix\Wallet\Interfaces\Customer;
use Illuminate\Database\Eloquent\Model;
/**
* Class User
*
* @package Bavix\Wallet\Test\Models
* @property string $name
* @property string $email
*/
class Buyer extends Model implements Customer
{
use CanBePaid;
Bavix\Wallet\Traits\CanBePaid
$total
Bavix\Wallet\Test\Models\Buyer
* @return string
public function getTable(): string
return 'users';
}