Web Development Blog
Developer Remarks | Know & How
Latest Posts
Random Posts
Laravel Blade using custom class
Published At:
2023-06-13
Updated At: 2025-07-24
Custom Helpers
Several possibilities: https://stackoverflow.com/questions/57560226/how-to-use-class-from-blade-template Sometimes, it's necessary...
Laravel Best Practices
Published At:
2023-06-13
Updated At: 2025-07-24
Note created on: 2023-05-05 07:45
Single responsibility principle
A class and a method should have only one responsibility.
Bad:
public function getFullNameAttribute(): string
{
if (auth()->user()...