hypothetical/app/Models/Contact.php

15 lines
335 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();
}
}