hypothetical/app/Models/Subscriptions.php

26 lines
429 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
2016-08-02 22:43:15 -04:00
class Subscriptions extends Model
{
/**
* The subscriptions table
*
* @var string
*/
protected $table = 'subscriptions';
/**
* Returns the list of all subscriptions
*
* @return array
*/
public static function getSubscriptions()
{
return self::orderBy('created_at', 'desc')->get();
}
}