1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-01-09 16:26:29 -05:00
hypothetical/app/Models/Subscriptions.php

18 lines
357 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Subscriptions extends DashboardModel
{
protected $table = 'subscriptions';
public static $export = true;
public static $dashboard_columns = [
[ 'title' => 'Date', 'name' => 'created_at' ],
[ 'name' => 'email' ],
[ 'name' => 'name' ]
];
}