@extends('layouts/fams_layout') @section('title', '| Brand') @section('content') @php $brandIdsFromProductTable = DB::table('fams_product')->distinct()->pluck('brandId')->toArray(); $brandIdsFromModelTable = DB::table('fams_product_model')->distinct()->pluck('productBrandId')->toArray(); $foreignBrandIds = array_merge($brandIdsFromProductTable, $brandIdsFromModelTable); $foreignBrandIds = array_unique($foreignBrandIds); @endphp