Shilpa Kalangutkar has Published 51 Articles

How to extract raw form data in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:55:36

7K+ Views

To demonstrate the above, we are going to make use of the below form It has username and password fields. Let us try to get raw form data in the methods shown below −Example 1 Using file_get_contents() file_get_contents() method is a built-in PHP function and it returns the file content ... Read More

How to get a list of registered route paths in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:46:40

4K+ Views

All the routes are stored inside the routes/ folder. If you open routes/web.php you will see the list of routes defined for your application. If you want to work with routes, you need to include the following class − use Illuminate\Support\Facades\Route; The routes/web.php file along with above class is ... Read More

How to delete a file from the public folder in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:39:14

5K+ Views

You can make use of the File facade class. To work with File facade you need to include the class as shown below − use Illuminate\Support\Facades\File; Here is a list of examples that shows how to delete the files from the public folder. The files details in the public ... Read More

How to pass an array as a URL parameter in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:33:20

12K+ Views

To pass an array as URL parameter you can make use of php built-in function http_build_query(). The http_build_query() returns you an URL-encoded query string. Example 1 Using http_build_query() Following is an example of this method − $data = array( 'field1' => 'test', 'field2' => ... Read More

How to get the last inserted ID using Laravel Eloquent?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:31:46

17K+ Views

Eloquent is a new object relational mapper (ORM) that helps to interact with database. With Eloquent each table has a mapping Model that takes care of all the operations on that table. Model in laravel represents the table in the database. For example if you have table customers, the model ... Read More

How to select certain fields in Laravel Eloquent?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:29:55

8K+ Views

Laravel Eloquent provides many ways to select the fields that you need from the table. Here are a few examples that show how it can be done. Example 1 The following is an example of this −

How to get the Current URL inside the @if Statement in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:26:02

1K+ Views

To get the current URL you can use the methods explained in the example below − Example 1

How would you insert a new user into a MySQL table from within Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:22:06

912 Views

You can insert a new user in the following ways as shown in the examples below. To insert a new user from Laravel you can do it using artisan seeder. To do that first create a seeder using the command below − php artisan make:seeder UserSeeder Once the command ... Read More

How do you check if a field is NOT NULL with Eloquent?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:20:08

5K+ Views

In the Eloquent Model you can make use of whereNotNull() method to get the not null values from the database. Example 1 In this example we are checking the field rememer_token if it’s NOT NULL.

How to add a new value to a collection in Laravel?

Shilpa Kalangutkar

Shilpa Kalangutkar

Updated on 30-Aug-2022 12:09:46

13K+ Views

Collection in Laravel is an API wrapper that helps you deal with different operations to be performed on arrays. It makes use of the class Illuminate\Support\Collection to deal with arrays in Laravel. To create a collection from a given array you need to make use of the collect() helper method ... Read More

Advertisements