@php $headers = [ // EXTRA DATA HIDDEN [ 'label' => '', 'target' => 'base_price', ], // VISIBLE DATA [ 'label' => __('table.header.id'), 'target' => 'id', ], [ 'label' => __('table.header.code'), 'target' => 'code', ], [ 'label' => __('table.header.product'), 'target' => 'label', 'dclass' => 'lefted', ], [ 'label' => __('table.header.quantity'), 'target' => 'quantity', 'hclass' => 'quantity' ], [ 'label' => __('table.header.price'), 'target' => 'final_price', 'hclass' => 'price' ], [ 'label' => __('table.header.conventions'), 'target' => 'active_conventions', 'hclass' => 'price' ], [ 'label' => __('table.header.vat'), 'target' => 'vat_tax', 'hclass' => 'price' ], [ 'label' => __('table.header.subtotal'), 'target' => 'subtotal', 'hclass' => 'price' ], [ 'label' => __('table.header.created'), 'target' => 'created_at', ], [ 'label' => __('table.header.notes'), 'target' => 'notes', 'wclass' => 'notes', 'hclass' => 'notes', 'dclass' => 'notes', ], [ 'label' => __('table.header.delete'), 'target' => '_delete' ], ]; // GET HEADERS TARGETS $col = array_flip( array_column($headers, 'target') ); @endphp @push('style') @endpush {{-- @extends('master') --}}