Laravel 10 Autocomplete Search from Database Tutorial

In Laravel, Autocomplete search is a useful feature that enhances the user experience by providing suggestions as the user types into a search field. 

Step 1: Install Laravel

composer create-project laravel/laravel example-app

Step 2: Add Dummy Users

php artisan migrate

let's create dummy records using below command:

php artisan tinker
  
    User::factory()->count(20)->create()

Step 3: Create Controller

app/Http/Controllers/SearchController.php 

<?php
  
  namespace App\Http\Controllers;
    
  use Illuminate\Http\Request;
  use App\Models\User;
  use Illuminate\View\View;
  use Illuminate\Http\JsonResponse;
    
  class SearchController extends Controller
  {
      /**
       * Display a listing of the resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function index(): View
      {
          return view('searchDemo');
      }
      
      /**
       * Show the form for creating a new resource.
       *
       * @return \Illuminate\Http\Response
       */
      public function autocomplete(Request $request): JsonResponse
      {
          $data = User::select("name")
                      ->where('name', 'LIKE', '%'. $request->get('query'). '%')
                      ->get();
       
          return response()->json($data);
      }
  }

Step 4: Create Routes

routes/web.php 

<?php
  
    use Illuminate\Support\Facades\Route;
      
    use App\Http\Controllers\SearchController;
      
    /* 
    |--------------------------------------------------------------------------
    | Web Routes
    |--------------------------------------------------------------------------
    |
    | Here is where you can register web routes for your application. These
    | routes are loaded by the RouteServiceProvider within a group which
    | contains the "web" middleware group. Now create something great!
    |
    */
      
    Route::controller(SearchController::class)->group(function(){
        Route::get('demo-search', 'index');
        Route::get('autocomplete', 'autocomplete')->name('autocomplete');
    });

Step 5: Create blade File

resources/views/searchDemo.blade.php 

<!DOCTYPE html>
<html>
<head>
    <title>Laravel 10 Autocomplete Search from Database - webthestuff.com</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-3-typeahead/4.0.1/bootstrap3-typeahead.min.js"></script>
</head>
<body>
     
<div class="container">
    <h1>Laravel 10 Autocomplete Search from Database - webthestuff.com</h1>   
    <input class="typeahead form-control" id="search" type="text">
</div>
     
<script type="text/javascript">
    var path = "{{ route('autocomplete') }}";
  
    $('#search').typeahead({
            source: function (query, process) {
                return $.get(path, {
                    query: query
                }, function (data) {
                    return process(data);
                });
            }
        });
  
</script>
     
</body>
</html>

Run Project:

php artisan serve

Now, Go to web browser, type the URL and see the output:

http://localhost:8000/demo-search