hypothetical/app/Models/Contact.php
2016-08-02 22:43:15 -04:00

16 lines
337 B
PHP

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