Laravel 6 DD cannot expand array view on network tabs (Developer tool)

Viewed 474

I've try to dump result of an array with dd , my laravel version is Laravel 6 ,

Any mistakes on my code ?

Below is my code :

   $bills = $bills->with('adminBill.bill');
    $bills = $bills->offset($start)
                     ->limit($limit)
                     ->where('group_code','SA')
                     ->orWhere('group_code','AD')
                     ->get();
    //check SM Balance 
    $sm_coin = DataScoin::with('unit_scoin')->where('status','0')->get();
    dd($sm_coin->toArray());

why i can't expand the array of "unit_scoin" like this picture ?

enter image description here

Anyone can help me out ?

2 Answers

You cannot invoke Javascript code like a button click on the preview tab of the network dev tools, because Javascript is disabled there

Try accessing an HTML page with

<noscript>Something</noscript>

and preview it in the network tab to confirm

I had the same problem. If you are still facing this problem, this might be because of Google automatically translating the page, thus the arrays are not expanding.

Related