4-İndirme cevapları Get link Facebook X Pinterest Email Other Apps October 31, 2014 <?php 2 3 // app/routes.php 4 5 Route::get('dosya/indir', function() 6 { 7 $dosya = 'kartalgolgolgol.mp3'; 8 return Response::download($dosya); 9 }); Get link Facebook X Pinterest Email Other Apps Comments
Debug modunu açma kapama October 16, 2014 Hatalarımızı görme açısında localde çalışırken hata modunu açmak isteyebiliriz. Bunun için config içerisinde app.php de 'debug' => true, yapıyoruz Read more
Laravel Datatable September 09, 2016 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'}, Read more
Comments
Post a Comment