In this tutorial, we will learn how to define constant variable in laravel 6 application. We can easily create laravel 6 constants variable. You can define constants variable with string value, integer value, array value and you can access for all controller, all views, all blade files, middleware too in Laravel 6 using config.
We must be require to define some global value for application like number of pagination records, user type, site url etc. If you are working with small project then i will suggest to create global config file for define constants variable.
In this example we will create one global config file will all define default variable with values. So you can use that variable from anywhere in project. you can also check bellow screen shot for file location.
We need to create global.php config file with constants variable value and you can also define array value like as bellow:
config/global.php
<?php
return [
'pagination_records' => 10,
'user_type' => ['User', 'Admin'],
]
?>
Use Constant Variable
You can easily get value using config() helper. you can see bellow example:
routes/web.php
Route::get('get-user-type', function()
{
dd(config('global.user_type'));
});
Read Also:Laravel 6 Dropzone Image Upload Tutorial
Route::get('get-user-type', function()
{
dd(config('global.pagination_records'));
});
I hope it can help you…
#laravel #php