2021年1月29日星期五

I try to fetch the details from database in Laravel with the Insomnia, But can't show any json Data in insomnia

// I try to fetch the details from database in Laravel with the Insomnia, But can't show any json Data in insomnia .

<?php            namespace App\Http\Controllers\API;            use App\Models\Product;      use Illuminate\Http\Request;      use App\Http\Controllers\Controller;      use App\Repositories\Product\ProductInterface;            class ProductController extends Controller      {                public function similarProduct(Request $request){                    $seo_url = $request->seo_url;              $products = $this->term->getByAny('seo_url', $request->seo_url)->first();              $products = Product::all();                    return response()->json(compact('products'));                }  
  1. List item
https://stackoverflow.com/questions/65960436/i-try-to-fetch-the-details-from-database-in-laravel-with-the-insomnia-but-cant January 30, 2021 at 03:14AM

没有评论:

发表评论