hypothetical/app/Models/Subscriptions.php

15 lines
342 B
PHP

<?php namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Subscriptions extends Model
{
// the subscriptions table
protected $table = 'subscriptions';
// returns the list of all subscriptions
public static function getSubscriptions()
{
return self::orderBy('created_at', 'desc')->get();
}
}