I have a piece of code like this:
$products = Product::all() if ($search_value) { $products = $products->where(\'name\', \'LIKE\', \"%$search_value%\
$table_Data = DB::table('tbl_product')->orderBy('id','DESC');
You can use this...