mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
16 lines
316 B
PHP
16 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Subscriptions extends DashboardModel
|
|
{
|
|
protected $table = 'subscriptions';
|
|
|
|
public static $export = true;
|
|
|
|
public static $dashboard_columns = [
|
|
[ 'title' => 'Date', 'name' => 'created_at' ],
|
|
[ 'name' => 'email' ],
|
|
[ 'name' => 'name' ]
|
|
];
|
|
}
|