HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
DIR: /var/www/devs.lapieza.net/app/Http/Controllers/
Upload File :
Current File : //var/www/devs.lapieza.net/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);
    }
}