Laravel Vue js Installation

A web framework provides a structure and starting point for creating your application, allowing you to focus on creating something amazing while you sweat the details. Installation composer create-project laravel/laravel…

0 Comments

Chart in laravel using chart.js

Laravel Charts is a charting library for laravel, and it's the only PHP package that's able to generate unlimited combinations of charts out of the box. This is because Chart's…

0 Comments

Laravel Ajax Crud

This article will give you example of laravel ajax crud example. you can understand a concept of laravel ajax crud example tutorial. I explained simply about laravel  jquery ajax crud…

0 Comments

Row count and sum in laravel

$count = DB::table('is_profile_completed')->where('userd', $userid)->count(); $sum = DB::table('is_profile_completed')->where('userd', $userid)->sum('salary'); $data = DB::table('posts')->where('post_status_for_frontend', 1)->orderBy('updated_at', 'desc')->paginate(4); {{count($data)}}  

0 Comments