This would be one approach: View presenters
Or, views are just plain php, so you can just do
<?php echo MyClass::getValue() ?>
// Or in blade
{{ MyClass::getValue() }}
But think about one responsability principle. Views shouldnt care about from where data are comming, they just need to show them. So first aproach would be right one (for me).
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community