Answers for "call class in blade with controller function"

PHP
0

How to use function in controller in blade

{{ ControllerName::Functionname($params); }}
OR

<?php echo ControllerName::Functionname($params);?>
Posted by: Guest on May-22-2021
0

how to call function in blade laravel

<div>
    <span>{{ $customFunction('custom param') }}</span>
</div>
Posted by: Guest on August-23-2021

Code answers related to "call class in blade with controller function"

Browse Popular Code Answers by Language