관리-도구
편집 파일: list.blade.php
@extends('layouts.app') <style> table#products_table tr td:first-child, table#products_table tr th:first-child, table#products_table tr td:last-child, table#products_table tr th:last-child, table#products_table tr td:nth-child(3), table#products_table tr th:nth-child(3),table#products_table tr td:nth-child(4), table#products_table tr th:nth-child(4),table#products_table tr td:nth-child(5), table#products_table tr th:nth-child(5) { display: none; } </style> @section('content') <div class="row"> <div class="col-lg-12"> <div class="card no-export"> <div class="card-header d-flex align-items-center"> <span class="panel-title">{{ _lang('Companies List') }}</span> <!--<a class="btn btn-primary btn-xs ml-auto" href="{{ route('products.create') }}">{{ _lang('Add New') }}</a>--> </div> <div class="card-body"> <table id="products_table" class="table table-bordered"> <thead> <tr> <th>{{ _lang('Thumbnail') }}</th> <th>{{ _lang('Name') }}</th> <th>{{ _lang('Price') }}</th> <th>{{ _lang('Status') }}</th> <th>{{ _lang('Created') }}</th> <th class="text-center">{{ _lang('Action') }}</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> @endsection @section('js-script') <script src="{{ asset('public/backend/assets/js/datatables/products.js') }}"></script> @endsection