1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Modules\Notice\Services;
- use App\Modules\Notice\Models\NoticeSms;
- class NoticeSmsService
- {
-
- public static function addNoticeSms($params) {
- $data = NoticeSms::create($params);
- return $data;
- }
-
- public static function getNoticeSms() {
- return NoticeSms::orderBy('created_at', 'desc')->paginate();
- }
- }
|