surya90
Go to app/Http/Controller/AdminController.php
Find the function: searchRestaurants
Change:
$restaurants = Restaurant::where('name', 'LIKE', '%' . $query . '%')
->orWhere('sku', 'LIKE', '%' . $query . '%')->with('users.roles')->paginate(20);
To:
$restaurants = Restaurant::where('name', 'LIKE', '%' . $query . '%')
->orWhere('id', 'LIKE', '%' . $query . '%')
->orWhere('sku', 'LIKE', '%' . $query . '%')
->with('users.roles')
->paginate(20);
Save the file.