Search
 
SCRIPT & CODE EXAMPLE
 

PHP

how to extract code from controller to helpers or other method in laravel

I would agree that it really comes down to what you feel comfortable with,here is a list of options I see.

1) make it a public or protected function in your controller
2) put the function into a trait that you can then use anywhere you need it
3) create a BaseController that extends Controller and contains this method. then you can simply extend your BaseController (good place to put other helper functions that might be needed in other controllers, too)
4) create a global helper function that you need to register in your autoloading
5) listen to the creating Eloquent event on the database and add your logic there
Comment

PREVIOUS NEXT
Code Example
Php :: month php written out 
Php :: expose loading laravel 
Php :: make model factory and controller laravel 
Php :: query log laravel 
Php :: drupal get route current content type 
Php :: find total value from cart in laravel 
Php :: unset method 
Php :: download image from mysql using php 
Php :: value() in laravel 
Php :: laravel delete method 
Php :: login form tutorialpoint 
Php :: dependency injection php 
Php :: mysql gone away error in php 
Php :: php barcode generator 
Php :: laravel api error return homepage 
Php :: laravel relationship retrieve data 
Php :: create laravel migration 
Php :: PHP parse_str — Parses the string into variables 
Php :: list function php 
Php :: displaying dates using php code 
Php :: php email sender 
Php :: how to create resource in laravel 
Php :: how to declare variable in php 
Php :: whats the difference between using date function and DATETime in php 
Php :: Write Multi-Line Strings in PHP 
Php :: latest php version 
Php :: laravel + join 2 eloquent queries 
Php :: how to pass write post method in lumen 
Php :: Laravel eger load 
Php :: laravel send request on tor request 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =