pdv.backend/app/Http/Traits/IsNotifiable.php
Moisés de Jesús Cortés Castellanos fc1e5728a7
REFACTOR: Refactorizacion y documentacion (#4)
2024-12-28 13:51:57 -06:00

19 lines
383 B
PHP

<?php namespace App\Http\Traits;
/**
* @copyright (c) 2024 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
*/
use Illuminate\Notifications\RoutesNotifications;
/**
* Notificaciones personalizadas
*
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
*
* @version 1.0.0
*/
trait IsNotifiable
{
use HasDatabaseNotifications, RoutesNotifications;
}