Jun 16, 2018
Manually add data into the database it will take time and fussy for the redundant task. So this tedious job reducing by Laravel using seeder.
Let's check the demo of how to add dummy data in category table using Laravel seeder.
First, you need to install faker into Laravel. Faker is a PHP library that generates fake data for you
Install faker...
How to display category name in the product listing page using ORM in Laravel
Kalpesh Satasiya
2:40 PM
Laravel, ORM, PHP, RelationShip
No comments
Many developers facing the issue regarding category name display in the product listing page.
I also facing the same issue so I have figured it out using the relationship.
Can't display category name in Product List page because of category...
May 13, 2018
How to load a component dynamically in Vue js
Kalpesh Satasiya
3:32 PM
Component, Dynamical Load, Vue, Vue.js
No comments
Going to learn one more topic about Vue Js. It's a component load dynamically in Vue Js.
Sometimes require component load based on some criteria or condition. That time needs to load component dynamically.
The above is made possible by Vue’s element with the is special attribute:
In the example above, currentTabComponent can contain either:
the...
Apr 7, 2018
Mar 31, 2018
Mar 26, 2018
Vue Js Binding
Kalpesh Satasiya
11:09 PM
Data Binding, Vue, Vue.js
No comments
Current market trends and very popular client-side frameworks are Angular, React and Vue.js.
Here we are talking about Vue.js and how the binding is working in Vue.js.
Please find sample tutorial of the Vue.js on my Github repo https://github.com/kalpeshsatasiya/VueTutorial
Also, I have recorded a video for Vue Js Binding feature and...
Memory Cache in Asp.Net Core
Kalpesh Satasiya
10:40 PM
ASP.NET Core, Caching, Memory Cache
No comments
The latest version of Microsoft Asp.Net has given the inbuilt feature of caching using Memory Cache.
Please find the example of Memory Cache in Asp.Net on my Github repo https://github.com/kalpeshsatasiya/MemoryCacheAspNetCore
Also, I have recorded the video for same and you can watch on my youtube channel.
Hope you enjoy the video and...
Feb 25, 2018
Feb 15, 2018
How to create controller using artisan syntax in Laravel 5
We know, Laravel framework is current technology trend. I am facing the issue to create controller in laravel 5.
When I was following along with Learning Laravel 4 Application Development
I attempt to create my first controller with artisan by doing the following:
php artisan Usercontroller:make users
But when I did for Larvel 5 application...
Vue.js Data Binding Syntax
Kalpesh Satasiya
12:37 AM
Data Binding, Data Binding Syntax., Vue, Vue.js
No comments
We know, Vue.js is the hot topic as per the current technology trend. Trying to cover Vue.js data binding syntax with the example.
Vue.js uses a DOM-based templating implementation. This means that all Vue.js templates are essentially valid, parsable HTML enhanced with some special attributes.
Interpolations
1. Text
The most basic form of data...
Jan 21, 2018
Getting Started With Vue CLI with Vue Router
Kalpesh Satasiya
4:48 PM
Router, Vue Application, Vue CLI, Vue.js
No comments
We know Vue is already a great Javascript library that allows you to create dynamic, front-end applications for single page application.
Single Page Application(SPA) is different then serve side application like asp.net or PHP.
Server-side...