Skip to main content

Posts

Showing posts from October, 2019

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

Top 20 Popular Topic Ideas For Blogging - Blog Topics List 2019 | JayviTech

Blogging with some purpose is increase the value of market share, customer engagement and revenue/income. you can do that with your blogging skill. But when any person start blog but still one question is :  What do we blog about? Here I will give and explain the latest 20 topics or ideas that are possible to make a successfull blogger. Here is the  Top 20 Popular Topic Ideas For Blogging - Blog Topics List 2019. Latest News You can post, share and discuss the latest news topic. And yes don't play with words and create some unrealistic discussion for reputation. Discuss your point with some fact then you can get traffic and people will interact with your blog. Share your opinion or interesting point about the latest news.(but share positive thought). Politics Politics news and politics things are very popular in every election year. Find the any political topic and discuss into your blog. You can also take care about your content because some time create

How to Import and Export CSV or Excel file into Laravel 5.8 | maatwebsite/excel | JayviTech

In this post we learn how to import and export CSV or Excel file using maatwebsite/excel version 3 in laravel 5.8 project. In this tutorial we will import a data to csv, xls file and import this excel data into database. Import and Export Excel/CSV file demo A package maatwebsite/excel provide easy way to import and export CSV. we use latest version of maatwebsite/excel version 3. 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 Maatwebsite Package Type the following command to install maatwebsite/excel package. composer require "maatwebsite/excel" Then open config/app.php file and add service provider and aliase name. 'providers' => [ .... Maatwebsite\Excel\ExcelServiceProvider::class, ], 'aliases' => [ .... 'Excel' => Maatwebsite\Excel\Facades\Excel::class, ], Then af

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 under the project directory  r