Easily export collections to Excel. Supercharge your Laravel collections and export them directly to an Excel or CSV document. Exporting has never been so easy. Supercharged exports. Export queries with automatic chunking for better performance. You provide us the query, we handle the performance. Exporting even larger datasets? No worries, Laravel Excel has your back. You can …
ngx-admin
ngx-admin is the most popular admin dashboard based on Angular 8+, Bootstrap 4+ and Nebular with Eva Design System support. It is free open source so we can check out code from https://github.com/akveo/ngx-admin. ngx-admin demo is here.https://www.akveo.com/ngx-admin/pages/dashboard Application– It contains a huge number of handcrafted UI components, charts, maps, editors, tables, and much more, so that we can use them …
Gradient in React Native(Expo)
Since Android doesn’t support shadow, it is a little tricky to add gradient shadow in react native. React native supports simple shadow(gray) in Android and colorful shadow in iOS. You can check here https://ethercreative.github.io/react-native-shadow-generator/ Actually, shadowColor is not working in Android and I didn’t test on iOS yet but it should be working. So I …
Aimoes Laravel
Aimeos Laravel is an open source e-commerce platform developed using Laravel. https://github.com/aimeos/aimeos-laravel If you follow this install guide, you’ll see a working e-commerce demo. Supported Versions LTS release: 2019.10 (Laravel 5.3 to 6.x) Beta release: 2020.10 (Laravel 5.3 to 6.x) Supported Databases MySQL, MariaDB (fully) PostgreSQL (fully) Oracle (partially) SQL Server (partially) SQL Anywhere (partially)
Stripe Elements
Stripe Elements is a set of prebuilt UI components, like inputs and buttons, for building your checkout flow. It’s available as a feature of Stripe.js. Stripe.js tokenizes the sensitive information within an Element without ever having it touch your server. Elements includes features like: Formatting card information automatically as it’s entered Translating placeholders into your customer’s …
NPM email-templates
The latest email-templates support SMTP configuration as a default so that you don’t need to use both of nodemailer and email-templates to send emails. In a nutshell this package internally installs nodemailer as a sub-package. https://www.npmjs.com/package/email-templates transport(Object) – a transport configuration object or a Nodemailer transport instance created via¬†nodemailer.createTransport, defaults to an empty object¬†{}, see¬†Nodemailer …
Flutter – shared preference
This wraps NSUserDefaults (on iOS) and SharedPreferences (on Android), providing a persistent store for simple data. Data is persisted to disk asynchronously. Neither platform can guarantee that writes will be persisted to disk after returning and this plugin must not be used for storing critical data. Plugin: https://pub.dev/packages/shared_preferences To use this plugin, add shared_preferences as a dependency in …
A Guide to SSH Port Forwarding/Tunnelling
SSH is a widely used protocol for system administration and file transfer. In addition, it has a feature called SSH tunnelling¬† (or SSH port forwarding). It creates an encrypted connection between a local computer and a remote computer through which you can relay traffic. It is very useful, and you can use it to securely …
MAKING REACT REALTIME WITH WEBSOCKETS
Every chat application requires real time functionality. This amongst other benefits allows interaction between users in different location(s). A chat application like this can be built to function on diverse platforms, be it mobile or web applications. In this tutorial, I will be showing you how to build a chat application using¬†React¬†and¬†Pusher. This is a …
OData – power your RESTful API resources manipulation
In computing, Open Data Protocol is an open protocol which allows the creation and consumption of queryable and interoperable RESTful APIs in a simple and standard way. Microsoft initiated OData in 2007. Shortly said, OData is similar to GraphQL, has more history and being used by large companies, when GraphQL is new and used by …