ItSolutionStuff.com

How to Define Constant Variable in Laravel?

By Hardik Savani • April 16, 2024
Laravel

In this tutorial, we will learn how to define constant variable in laravel application. we can easily create laravel 7/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 8 using config.

you can easily define global variable in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application.

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.

Create Config File

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'));

});

Route::get('get-user-type', function()

{

dd(config('global.pagination_records'));

});

I hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Show Pagination with Serial Number in Laravel?

Read Now →

How to Generate a Dropdown List of Timezone in Laravel?

Read Now →

How to use Bootstrap Icons in Laravel Vite?

Read Now →

How to Install Sweetalert2 in Laravel 10 Vite?

Read Now →

Laravel Country List with Flags Example

Read Now →

How to Show Data in Modal using Ajax in Laravel?

Read Now →

How to Use and Install Font Awesome Icons in Laravel?

Read Now →

How to Install JQuery UI in Laravel Vite?

Read Now →

How to Read Content from PDF File in Laravel?

Read Now →

Laravel Password and Confirm Password Validation Example

Read Now →

Laravel Remove All Spaces from String Example

Read Now →

Laravel withSum() with Where Condition Example

Read Now →

Laravel Eloquent Order By Length Query Example

Read Now →