Initial Commit

This commit is contained in:
dev 2021-07-15 23:35:54 -07:00
commit cc2af611e1
148 changed files with 54234 additions and 0 deletions

24
app/Models/Tip.php Normal file
View file

@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Tip extends Model
{
use HasFactory;
protected $appends = ['amount_formatted'];
public function getAmountFormattedAttribute()
{
return number_format(($this->amount)*(pow(10, -12)), 8, '.', '');
}
public function address()
{
return $this->belongsTo(Address::class);
}
}