How to Get Single Row Data in Laravel 9 Tutorial

Reading Time: 4 minutes
2,632 Views

Inside this article we will see How to get single row data in laravel 9 application. Article contains very classified information about Laravel 9 methods which helps to get single row data from database.

If you are looking for an article which makes you understand about how to get a single row from table then you are at the right place to learn that.

In Laravel 9, there are several methods available to get single row data. Also selecting data rows from database in Laravel 9, we have several options available as – Using Models, Using raw queries, etc. We all discuss about Model’s method to get single table row.

Learn More –

Let’s get started.

Laravel Installation

Open terminal and run this command to create a laravel project.

composer create-project laravel/laravel myblog

It will create a project folder with name myblog inside your local system.

To start the development server of laravel –

php artisan serve

URL: http://127.0.0.1:8000

Assuming laravel already installed inside your system.

Concept #1: Using find()

Here, we will use find() method of model. Using find() method we can get single row data set into an object format.

/**
 * Write code on Method
 *
 * @return response()
 */
public function getSingleData()
{
  $countryID = 1;
  $countryData = Country::find($countryID);

  echo "<pre>";
  print_r($countryData);
}

Concept #2: Using firstWhere()

Here, we will use firstWhere() method of model. When we have some condition on the behalf of that for selecting data we can use firstWhere() method.

/**
 * Write code on Method
 *
 * @return response()
 */
public function getSingleData()
{
  $countryID = 1;
  $countryData = Country::firstWhere("id", $countryID);

  echo "<pre>";
  print_r($countryData);
}

Concept #3: Using first()

Here, we will use first() method of model. Using first() method we can select first row data from result set.

/**
 * Write code on Method
 *
 * @return response()
 */
public function getSingleData()
{
  $countryData = Country::first();

  echo "<pre>";
  print_r($countryData);
}

Concept #4: Using where() and first()

Using first() & where() methods. We can get single row data on the behalf of some condition using where(). first() method selects first data row.

/**
 * Write code on Method
 *
 * @return response()
 */
public function getSingleData()
{
  $countryID = 1;
  $countryData = Country::where("id", $countryID)->first();

  echo "<pre>";
  print_r($countryData);
}

We hope this article helped you to How To Get Single Row Data in Laravel 9 Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more