php Laravel:数据刀片文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel:数据刀片文件相关的知识,希望对你有一定的参考价值。
@push('styles')
<link rel="stylesheet" href="{{ asset('css/datatable.css') }}">
@endpush
@push('scripts')
<script type="text/javascript" src="{{ asset('js/datatable.js') }}"></script>
<script type="text/javascript">
$(function() {
$('#{{ $table_id }}').DataTable({
processing: true,
serverSide: true,
ajax: '{!! route($route_name) !!}',
columns: [
@foreach($columns as $column)
{ data: '{{ $column['data'] }}', name: '{{ $column['name'] }}' },
@endforeach
]
});
});
</script>
@endpush
@component('components.table', ['table_id' => $table_id])
@slot('thead')
@foreach($columns as $column)
<th>{{ $column['header'] }}</th>
@endforeach
@endslot
@endcomponent
以上是关于php Laravel:数据刀片文件的主要内容,如果未能解决你的问题,请参考以下文章
为啥 laravel 中的刀片文件不显示?
php Laravel:具有可数据刀片组件的数据表用户视图
如何通过ioncube对Laravel刀片文件进行编码/加密
我可以将刀片变量传递给 Laravel 中的 php 变量吗?
laravel:如何包含刀片布局中的部分?
laravel 制作自己的刀片文件路径