Files
Sistema-Educativo-Laravel/vendor/laravel/cashier-paddle/workbench/app/Models/User.php
T

14 lines
209 B
PHP

<?php
namespace Workbench\App\Models;
use Illuminate\Foundation\Auth\User as Authenticable;
use Laravel\Paddle\Billable;
class User extends Authenticable
{
use Billable;
protected $guarded = [];
}