Answers for "create function in laravel controller"

1

how to create controller in laravel

Simple controller:
php artisan make:controller nameOfController  
  
Want to create controller in a folder? use it like this:
php artisan make:controller NameOfFolder/nameOfController  
  
Resource Controller:This controller will create all CRUD methods
php artisan make:controller nameOfController --resource
Posted by: Guest on December-22-2020
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

Code answers related to "create function in laravel controller"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language