feat: add full_name and formatted_email properties to User model
All checks were successful
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 2m35s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 2m46s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 2m51s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 3m2s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 2m46s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 1m46s

This commit is contained in:
2025-10-21 12:46:55 -04:00
parent 21408198e8
commit 7974667432

View File

@@ -15,6 +15,9 @@ use Carbon\Carbon;
* @property string $email
* @property string $password
* @property Carbon $created_at
*
* @property-read string $full_name
* @property-read string $formatted_email
*/
class User extends Model
{