Questions tagged [yajra-datatable]

Use this tag for questions relating to the Yajra DataTables package, which is used to support the creation of jQuery DataTables in Laravel projects.

The Yajra DataTables package supports the creation of jQuery DataTables in Laravel projects.

Specifically, it provides support for server-side implementations of DataTables.

Additional Resources

377 questions
2
votes
0 answers

Custom Pagination in Laravel Yajra DataTable

I love how the DataTables give us all the necessary things that we require in our Table but is there any way we can edit the pagination coming default with Laravel Yajra DataTable to our own. Really looking forward for someone who can guide me on…
HumzaXSN
  • 31
  • 4
2
votes
0 answers

Yajra Datatable not doing anything

I have implement Yajra Datatable on my Laravel. But, it seem not to do anything, just not working. First, it show error like this After add attribute bDestroy, it doenst return error, but, just not working. No error, no tab network log, not even…
2
votes
0 answers

Issue with Laravel Yajra and Mongodb

I shifted my database from mySql to monogdb of my e-commerce application. I have created all the monogodb collections as in mySQL and models extended Jenssegers\Mongodb\Eloquent\Model. Rest all works as usual, But i get error in ajax call of yajra…
techieMad
  • 31
  • 4
2
votes
1 answer

Yajra Datatables Laravel

I am having issues using Yajra Datatables in my Laravel App. I have followed a online guide however I get a blank response. I need to display a list of members based on their points. This is the Table in the View Page:
Brendan
  • 95
  • 1
  • 15
2
votes
1 answer

Yajra datatable is interupting jQuery auto refresh function

I have made alert system for new order. For that I am refreshing div (in header) in every three seconds using jQuery function like this setInterval(function() { $("#notification-rf1").load(location.href + " #notification-rf1"); …
Rishabh
  • 610
  • 2
  • 11
  • 32
2
votes
1 answer

Laravel - How to have two datatables in one blade view

I am a laravel beginner. I currently have a project in progressing which need to have two data tables in one page. In my past project, I only know how to make just a datatable to display ine one view page. For now, I need to have Branch Manager…
Say Jack
  • 61
  • 1
  • 6
2
votes
1 answer

Laravel 8 Datatables Eager Loading Not Working (Yajra)

I am using Yajra Datatables to fetch the data inside my table. I need to display the data of the table accreditors wherein the nonofficial_category_id column for the said table should display the area_name equivalent of it from another database…
monkeybanana
  • 247
  • 1
  • 12
2
votes
0 answers

how to fix Low speed using Laravel yajra datatable

Laravel Experts ! please help me. I am new to laravel and just made datatable using yajra datatable. The issue is that its speed is too slow when the result has over 2k rows. Please check my code and give me the best solution for fixing it. Please…
Dennis
  • 33
  • 5
2
votes
1 answer

How to add Laravel datatable(yajra) to existing project?

Is any possible way, to add yajra datatables to existing project? If I implement it to blank view.blade.php it works good, but if I put it to my existing project it only show thead. My controller: namespace App\Http\Controllers; use…
2
votes
4 answers

Laravel Datatable default search is not working with custom filters

I am using yajra datatable in laravel.I have implemented the table.It is working fine except search. I have a custom filter too. Below code is showing the Datatable initialization and ajax request. User Type Filter is working fine.