@extends('layouts.dashboard-app') @php $channel = \App\channel_partner::whereStatus('1')->get(); $r = \App\numberdetail::select('numberdetails.type')->where('status','Available')->groupBy('numberdetails.type')->get(); @endphp @section('main-content')

Hello, Welcome {{auth()->user()->name}}

@foreach ($channel as $c) @foreach ($r as $item) @endforeach @endforeach
@endsection