Skip to main content

About PHP Artisan with Jay Chauhan - First Introduction post in Blogger | JayviTech

This is the first post About the PHP Artisan with Jay Chauhan : First Introduction post in Blogger, This post describe about Jay Chauhan (Author) and what is the aim to start this blog.

welcome image
welcome image
"Keep Exploring New Thing With Our Past Experience."

Here I am sharing the interesting innovations and facts of Technology and Science.

Hi readers, My name is Jay Chauhan. I thought one thing in my mind before my subjected post, first of I share my personal information, what is the Aim behind starting this blog and why technical people read my blog.
There are lot's of questions, but I am going to start my first post with this question,
So let's start:

About the Author

Hi, My Name is Jay Chauhan. I am a Full-Stack Developer. I Live in India.
I have completed my Master's Degree at Maharaja Krishnakumarsinhji University Bhavnagar, Gujarat. After Completion of my MCA (Master in Computer Science), I had Started my carrier in IT Industries. Today I have 2+ Year Experience in IT(Information Technology) Field.
I am working on Laravel, Angular 8, Angular 7, CodeIgniter, PHP, JavaScript, JQuery, Bootstrap from my begging phase.

Why I Start PHP Artisan with Jay Chauhan Blog

question mark with user
How to do Actual Code
"Many people do code",  but do they know "How to do Actual Code!"

I started my blog to help my all PHP and Laravel Artisan Friends who get stuck when they apply a particular coding functionality to their projects.
(and yes, sometimes even I get stuck in some cases 😜😜😜).

So, My Aim to start this blog is to help the Technology person to solve and fix their bugs as possible as soon with some details knowledge.

Why You read my blog?

Yes, I know, nowadays there are lots of tutorials and blogs are available so why you can read my blog? My answer is simple here:
Every person is their own style to explain some points, so I try to explain topics in an easy way, and my own style to solve a problem with some details knowledge.

We face a new problem every day, and we find and know the solution for it, 

but is it the right way to solve it? Is there any alternative to the problem? How Many ways we have, to solve the problem?  

from when you start finding these question's answers, then you are reaching towards expertness level on particular subject.

There are many alternatives is available for this solution In some problems there are many ways to do it, so we choose the right way to do that code.
and yes I also share some real-life problems when we do code and I try to understand how to solve/fix it.

Conclusion

I Starting to write out a blog so if any problem to fix some issue then let me know in my blog comment section or contact me with my Gmail account, I definitely try to solve your problem.
So, Guys please Share PHP Artisan with Jay Chauhan Blog to your Technical friends and do the best coding with an easy way.
🙏🙏🙏💃💓

"Keep Exploring New Thing With Our Past Experience." -  Jay Chauhan

Comments

  1. Nice jay ..keep posting update ..👌👌👌👌
    👍👍👍👍
    👌👌👌👌

    ReplyDelete
  2. Hello jay,
    Check It out this one once:- https://www.techtrends.tk/

    ReplyDelete

Post a Comment

Show Latest Post

Laravel 5.8 Digital Signature - Signature Pad | Jquery signature pad | JayviTech

In this post we can learn how to make Digital  Signature Pad  into your Laravel 5.8 project. Using the JavaScript Library we can draw the smooth signatures, It is a HTML5 Canvas based. It is working for all modern browsers, desktop and mobile browsers. Signature Pad Watch  What is MVC Structure? Watch to learn:  Laravel 7 Tutorial We create a Digital E-Signature Pad with saving as a image using HTML5 canvas. So, Let's start: Step 1: Install Laravel 5.8 Project Type the following command. composer create-project --prefer-dist laravel/laravel blog "5.8.*" Step 2: Define the route name under the web.php file Route :: get ( '/signature-pad' ,  function  () {      return   view ( 'signature-pad' ); }); Step 3: Create a Signature Pad Now we can create a Signature Pad view, then after we can watch how our signature pad look like into our Laravel project. Create a  signature-pad.blade....

PHP Trends in 2019: Top PHP Framework For Web Developement | Latest Trends in PHP | JayVitech

It is difficult to move up with the latest web development technology when you manage the development team. Before move to latest technology, you must knowing about the latest technologies features. Using this strategy you know about the technologies full advantages to maintain your quality and improving a business performance. In this post we discuss about the Latest Trending PHP Framework for your web development to grow the organization's business performance. PHP Framework used for? Hypertext Preprocessor (PHP) or Personal Home Page (PHP) is most widely server-side programming languages over the world. PHP is a opensource, extensible and platform-independent programming language. it is easy to learn, understand and use. PHP is open source but developers not need to wait the update is released.  We always be updated with the new or changing PHP trends. The maintenance and web development costs are highly affordable. Trend of PHP Freamworks for Web Devel...

Image Compress demo in laravel 5.8 | Intervention Image - Resize image | JayviTech

In this post we will learn "How to compress image before upload in laravel 5.8" . We use intervention in laravel for compress a image. using a Laravel intervention we can easily compress a any type of image format. Intervention image package allows a image to compress and resize in laravel project. So, let's start: Step 1: Install Laravel 5.8 Project Type the following command. composer create-project --prefer-dist laravel/laravel blog "5.8.*" Step 2:  Install Intervention Image We will install intervention/image package for resize image. Using this package we can make thumbnail image. Type the following command: composer require intervention/image Then open  config/app.php  file and add service provider and aliase name. 'providers' => [ .... Intervention\Image\ImageServiceProvider::class, ], 'aliases' => [ .... 'Image' => Intervention\Image\Facades\Image::class, ], Then after publi...