block-explorer/app/Models/Address.php
Ben van Hartingsveldt 09800ab844
Switch to chainquery
2025-06-27 16:22:05 +02:00

21 lines
379 B
PHP

<?php
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* @mixin Model
* @property mixed id
* @property mixed address
* @property mixed first_seen
* @property mixed created_at
* @property mixed modified_at
* @property mixed balance
*/
class Address extends Model{
protected $table = 'address';
public $timestamps = false;
}