Teams Multi-Tenancy: Add “Team Admin” to Manage Users
By default, in our Team Multi-Tenancy module, every member of the team sees all entries of their team, and team users are managed only by the system administrator. Customers were asking us how to add a new role of “Team Admin” to manage users of their own team. So we created a demo-project with repository.
Laravel: Login and Register Forms in Modal Bootstrap Popups
We all are used to default Laravel Auth login/register forms – as separate /login and /register URLs. But sometimes it’s needed to have them as modal popups instead of separate pages. How to implement it in Laravel, including showing the validation errors in modals?
For Customers: Replace CoreUI Theme to Use v2.1.16 instead of v3.0
This week our customers reported an issue that CSS and JavaScript was not loading properly for CoreUI theme. We investigated the bug and here’s what we did wrong on our side, and how to fix it.
Laravel: When to Use Dependency Injection, Services and Static Methods
Sometimes we need to put application logic somewhere outside of Controllers or Models, it’s usually are so-called Services. But there are a few ways to use them – as static “helpers”, as objects, or with Dependency Injection. Let’s see when each one is appropriate.
New Demo Project: Laravel School Timetable Calendar
We notice more and more use-cases for our QuickAdminPanel, and here’s a new demo-project we created to manage a school timetable. It doesn’t necessarily have to be school, it can be applied to any organization with a weekly timetable schedule.
LaraTweets: Public Twitter Feed about Laravel – Filtered to Your Needs
Twitter is the best way to read Laravel news. But it’s impossible to read all the feed, it’s massive! Also, it’s full of spam ads. So I decided to build a FILTERED Twitter feed, and today presenting to you… LaraTweets!
Laravel Notifications With “database” Driver: Internal Messages
Laravel Notifications system is a wonderful way to notify users via email or SMS. But a less-known feature is notification driver called “database”, which allows saving the messages inside the application’s DB, and then show them inside the system, as internal message alerts. This article will show you how.
Laravel: New User Registration – Seed Example “Dummy” Data
Quite often in projects, new users should see an example data, to be able to understand what exactly the system does, and how to use it. How to implement that “fake data” seeding in Laravel, on every new user registration?
Laravel Datatables: Position Re-Ordering with Drag/Drop
One of the features requested in our QuickAdminPanel, was drag’n’drop re-ordering of the entries in Datatables. For now, we decided to create a quick demo-project which would show you how to add this functionality.
Laravel Datatables Edit/Delete Buttons: Hide Under JavaScript Dropdown
Usually in every datatable there is a column with buttons – Edit, View, Delete. But often visually it’s more appealing to “hide” them and just view some icon (like three vertical dots) and show those actions only on click of this icon. How to implement that in Laravel, and specifically in QuickAdminPanel?