Skip to content

Instantly share code, notes, and snippets.

@tobyokeke
Created April 19, 2020 20:07
Show Gist options
  • Save tobyokeke/f529f823a6eafb02b0a51500d47e8456 to your computer and use it in GitHub Desktop.
Save tobyokeke/f529f823a6eafb02b0a51500d47e8456 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Storage;
use Laravel\Passport\HasApiTokens;
class customer extends Authenticatable
{
use HasApiTokens, Notifiable;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment