1-Önce composer ile kurulumu yapalım "yajra/laravel-datatables-oracle": "~3.0", 2-Tablomuzu oluşturalım <table class="table mb-none" cellspacing="0" width="100%"> <thead> <tr> <th> Birimi</th> <th>Türü</th> <th> Tipi</th> <th>Oluşturulma Tarihi</th> <th>Güncellenme Tarihi</th> <th>Düzenle</th> <th>Sil</th> </tr> </thead> </table> <script type="text/javascript"> $(document).ready(function() { var dt = $('table').DataTable({ processing: true, serverSide: true, ajax: "{{ route('training-unit.index') }}", columns: [ {data: 'name', name: 'name'},
Comments
Post a Comment