authentikate/app/Models/Application.php
Javier Feliz 9746756a44
Some checks failed
linter / quality (push) Successful in 3m5s
tests / ci (push) Failing after 7m35s
App icons and editing
2025-07-27 16:57:02 -04:00

16 lines
214 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Application extends Model
{
protected $guarded = ['id'];
public function getIconUrl()
{
return $this->icon;
}
}