xmrmemes/app/Models/Tip.php
dev 821fb9b1ed Finish rough draft of website
Update the payment code so everything is working now

Improve DB structure

Improve design

Add API

Validate XMR Address upon registration

And Much More...

Still Need to work on:

- SEO
- Dropdown in menu (bug, not dropping down)
2021-08-06 13:06:07 -07:00

30 lines
581 B
PHP

<?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', 'tx_url'];
public function getAmountFormattedAttribute()
{
return number_format(($this->amount)*(pow(10, -12)), 8, '.', '');
}
public function getTxUrlAttribute()
{
return config('app.xmr_explorer_base_url') . $this->txid;
}
public function address()
{
return $this->belongsTo(Address::class);
}
}