Afolayan
Afolayan wrote

Getting Started With Laravel Mix

Laravel Mix, in a nutshell, is a tool that compiles, minifies and stores your assets in your application’s public folder for easy reference.  In this article, you’ll learn the following: How to Install LaravelMix in a Laravel application How to use Laravel Mix in other development environments Compiling assets with Laravel Mix How to Install laravelMix […]

November 25, 2019 in Laravel & Tutorials
Afolayan
Afolayan wrote

How To Work With Laravel Flash Messages

If you’ve come across a website with login/logout or any validation functions, chances are that you have probably come across Flash messages. At the end of this tutorial, you should have at least a basic grasp of the following: What Laravel Flash messages are Examples of common scenarios where you may come across a flash […]

November 22, 2019 in Laravel & Tutorials
Afolayan
Afolayan wrote

Building a Laravel CRUD Application

In this tutorial, we’ll be building a Laravel CRUD Application with Laravel 6 along with authentication and we’d get to do the following. Learn how to set up a Laravel Application from scratch Learn  to create a Database in PHPMyAdmin Work with laravel blade templates Work with Models, Migrations, and Controllers in Laravel Work with […]

November 21, 2019 in Laravel & Tutorials
Deven
Deven wrote

How to crop & edit Images In Laravel

In this tutorial, you will learn how to crop & edit Images In Laravel. Here we will be using Jcrop for cropping our images, further its not a complete guide for image editing in laravel. but it will give you a basic idea about how it is done. Image editing and manipulation can sometimes be […]

November 21, 2019 in Laravel & Tutorials
Afolayan
Afolayan wrote

How To Switch to Ajax-based Authentication in Laravel 6

In this tutorial, you will learn how to Switch to Ajax-based Authentication in Laravel 6. One of the exciting features of Laravel 6 the ability to immediately generate a fully usable authentication system by installing the laravel UI package and running the auth command. I.e composer require laravel/ui laravel ui vue –auth As exciting as […]

November 20, 2019 in Laravel & Tutorials

Operator (&& ||) short-circuiting in JavaScript

One handy feature of JavaScript and some other programming languages like Java is the concept of operator short-circuiting.So, what does the operator short-circuiting in JavaScript mean? To understand what operator short-circuiting mean, let’s see it in action: let online = true; let active = true; if(online) { if (active) { console.log(‘James’) } } Short-circuiting the […]

November 20, 2019 in Javascript & Tutorials
Deven
Deven wrote

Build a simple E-Commerce App with React Native

In this tutorial, I’ll show you to build a simple e-commerce app with React Native. React Native is a JavaScript framework for writing mobile applications for iOS and Android. It’s based on React and React Native is so popular. Create Login Page In React-Native with Animation Prerequisites Before continue reading this tutorial you will need Node.js and npm installed on your machine. […]

November 19, 2019 in React Native & Tutorials
Deven
Deven wrote

Getting started with React Router

Introduction One of the simple definition of routing is navigation between pages. Routing is provided by many JavaScript frameworks especially React.  React is a Javascript library for building user interfaces. Introducing Routing in React React provides several libraries for routing. React community provides several routing solutions available here. Let’s take a look at the React routing […]

November 19, 2019 in React & Tutorials
Deven
Deven wrote

Error Handling in Angular Applications

Error handling in Angular or  software development is as important having a working application. In order to have a complete and robust application, errors and exceptions have to be properly handled. Handling errors is a way of telling your users “hey dude! Calm down, here is the problem, and here is the way out yeah? In […]

November 18, 2019 in Angular & Tutorials

How to consume RESTful APIs with axios

Knowing how to consume data from an API is very important as a front-end developer. In this article, we’ll discuss what an API is and how to consume data from it via http to give your web app superpowers. It is assumed that you have adequate knowledge of JavaScript and how NodeJs works. What is […]

November 18, 2019 in Javascript & Node & Tutorials

Different methods of copying objects in Javascript

In this article, you will learn different methods to copy an object in Javascript. It is no news that JavaScript —which happens to be my favorite programming language possesses some weirdness. One of which is the way objects are copied. Take a look the following code snippet: let name = ‘james’ let secondName = name; […]

November 7, 2019 in Javascript & Tutorials

Using Firebase Authentication in a Vue Application

In this tutorial, we are going to build a simple Vue application using Vue CLI and firebase authentication.But first, let’s get our system set up for Vue development. Install Vue CLI Vue CLI requires node.js version 8.9 and above. So ensure you have the right version of node.js installed. You can check your node.js version […]

October 29, 2019 in Tutorials & Vue
Deven
Deven wrote

Create a cryptocurrency app with Angular

In this tutorial, we are going to create a CryptoCurrency Price Update app using Angular 9. You will learn about Angular 9 application development. You will also learn how to use the Subject class from RxJS, a ReactiveX library for JavaScript. Let’s get started By creating Angular 9 project Install the Angular CLI To install the CLI […]

October 5, 2019 in Angular & Tutorials