How to get data from database to view page in laravel 8?

Oussama

I'm trying to get data from database to my view page using Laravel 8.

the table's name is "users" [id, name, email, etc...] it's autogenerated from Jetstream, connection and login register works fine !

I only want to view table users list (id and names).

Here is my editprofile.blade.php file :

<x-app-layout>
<x-slot name="header">
    <h2 class="font-semibold text-xl text-gray-800 leading-tight">
        {{ __('Edit Profile') }}
    </h2>
</x-slot>

<div class="py-12">
    <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
        <div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
          <h1>This is a private page </h1>

          @foreach($petani as $key => $data)
              <tr>
                <th>{{$data->id}}</th>
                <th>{{$data->name}}</th>             
              </tr>
          @endforeach
        </div>
    </div>
</div>

and here is my routes/web.php file (the blade is under a folder called profile so the path is profile/editprofile.blade.php)

Route::get('profile/editprofile', function () {
$petani = DB::table('users')->get();

return view('profile/editprofile', ['petani' => $petani]);
});

Please how Can I show data in my page ?

alvvi

Why don't just use Eloquent models as it's shown in the offical documentation. So to query all users you would do something like this:

Route::get('profile/editprofile', function () {
  $usres = \App\User::all();
  return view('profile/editprofile', ['petani' => $usres]);
});

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to get data from database in laravel with json?

From Dev

How to Get Specific data from Database SQLITE in a Text View?

From Dev

How to get calculated data from Controller to View and display it (laravel)?

From Dev

How to get data transfer from the form into database Laravel 5

From Dev

How to get data from a database using FOREACH in Laravel?

From Dev

Get Page View Data from Application Insights

From Dev

How to get data from the database?

From Dev

laravel error to get data from database

From Dev

laravel 5 and Ajax get data from database:

From Dev

How to view all data from database?

From Dev

MVC Java Swing how to correctly get data from database from a view

From Dev

How to retrive data from database in Odoo 8

From Dev

Get Data From Database From MVC Shared View

From Dev

How to get session values from database in laravel

From Dev

How can i get a drupal 8 database table in a view?

From Dev

How to view a table from database in the xampp php at the endofthis index page?

From Dev

How to get data from the controller model to the view

From Dev

how to get data into view from controller in cakephp

From Dev

Get data from the database into the main django admin page

From Dev

Get/fetch data from database without refresh the page

From Dev

Get data from the database into the main django admin page

From Dev

Get the most recent data from database to jsp page

From Dev

How to get data by matching month of birthdate from database to current month in laravel using Carbon datetime extension?

From Dev

How to get data by matching month of birthdate from database to current month in laravel using Carbon datetime extension?

From Dev

How to get specific data from MySQL database?

From Dev

How to get data from existing MongoDB database?

From Dev

How to get data from database separated by comma?

From Dev

how to get data from firebase database

From Dev

How to get list of data from database to spinner

Related Related

  1. 1

    how to get data from database in laravel with json?

  2. 2

    How to Get Specific data from Database SQLITE in a Text View?

  3. 3

    How to get calculated data from Controller to View and display it (laravel)?

  4. 4

    How to get data transfer from the form into database Laravel 5

  5. 5

    How to get data from a database using FOREACH in Laravel?

  6. 6

    Get Page View Data from Application Insights

  7. 7

    How to get data from the database?

  8. 8

    laravel error to get data from database

  9. 9

    laravel 5 and Ajax get data from database:

  10. 10

    How to view all data from database?

  11. 11

    MVC Java Swing how to correctly get data from database from a view

  12. 12

    How to retrive data from database in Odoo 8

  13. 13

    Get Data From Database From MVC Shared View

  14. 14

    How to get session values from database in laravel

  15. 15

    How can i get a drupal 8 database table in a view?

  16. 16

    How to view a table from database in the xampp php at the endofthis index page?

  17. 17

    How to get data from the controller model to the view

  18. 18

    how to get data into view from controller in cakephp

  19. 19

    Get data from the database into the main django admin page

  20. 20

    Get/fetch data from database without refresh the page

  21. 21

    Get data from the database into the main django admin page

  22. 22

    Get the most recent data from database to jsp page

  23. 23

    How to get data by matching month of birthdate from database to current month in laravel using Carbon datetime extension?

  24. 24

    How to get data by matching month of birthdate from database to current month in laravel using Carbon datetime extension?

  25. 25

    How to get specific data from MySQL database?

  26. 26

    How to get data from existing MongoDB database?

  27. 27

    How to get data from database separated by comma?

  28. 28

    how to get data from firebase database

  29. 29

    How to get list of data from database to spinner

HotTag

Archive