Add following code snippet in boot method of AppServiceProvider After that we can just run `php artisan migrate` and all migrations will be run at once.
Add following code snippet in boot method of AppServiceProvider After that we can just run `php artisan migrate` and all migrations will be run at once.
ApexCharts is an open-source modern charting library that helps developers to create beautiful and interactive visualizations for web pages. https://apexcharts.com/ There is also a react wrapper for this ApexChart. https://github.com/apexcharts/react-apexcharts
repng is a npm library which converts any React component to a png file. The usage of this library is very simple as following. Here are more details. https://www.npmjs.com/package/repng https://github.com/jxnblk/repng
Terminus is a highly configurable terminal emulator for Windows, macOS and Linux Theming and color schemes Fully configurable shortcuts Split panes Remembers your tabs PowerShell (and PS Core), WSL, Git-Bash, Cygwin, Cmder and CMD support Integrated SSH client and connection manager Full Unicode support including double-width characters Doesn’t choke on fast-flowing outputs Proper shell experience on …
https://www.prisma.io/ Prisma client simplifies database access. It lets you read and write data to your database using your favorite programming language. Auto-generated & type-safe client library Latest ES7 features (e.g. async/await) Performant database access Simple data modeling & easy migrations Prisma Migrate defines and updates your database schema using the declarative SDL syntax for data …
nivo provides supercharged React components to easily build dataviz apps, it’s built on top of d3. Several libraries already exist for React d3 integration, but just a few provide server side rendering ability and fully declarative charts. In order to use nivo, you just have to pick the scoped @nivo packages according to the charts you wish to …
There is no Google News API in the world. 😉 Instead of it, you should use Google News RSS. For example, https://news.google.com/rss/search?q=ronaldo+messi The result is XML doc, so you should parse it.
Mattermost is a flexible, open source messaging platform that enables secure team collaboration. Mattermost is an open source Slack alternative. It’s written in Golang and React and runs as a single Linux binary with MySQL or PostgreSQL. Use the features you like (file sharing, real-time group chat and webhooks – to name a few) and …
Laravel framework provides a bunch of artisan commands. We can create models, controllers and resources using artisan commands but repositories are not supported by default. laravel-make-repository package makes it possible. composer require laravel-make-repository php artisan make:repository RepositoryName