Laravel vue js router
Currently i am using vue and laravel together.Vue for frontend and laravel for backend api.I am trying to use vue-router with laravel but couldnt make it work. What i am…
Currently i am using vue and laravel together.Vue for frontend and laravel for backend api.I am trying to use vue-router with laravel but couldnt make it work. What i am…
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…
How to use Facebook to log into a Laravel application. If you have the same query, keep reading; in this article, we'll learn how to use the Socialite package in Laravel to…
In this post, i give you example query of how to fetch current month records from table using Laravel query builder. We sometimes require to get records that created on…
Friends, you must have learnt about crud operation in Laravel. Crud operation means inserting data in the database, displaying it in the printout, editing it and deleting it. In this tutorial,…
In this tutorial, we are going to create a new Laravel application for creating blogs or posts. While creating a blog we’ll use CKEditor to take input or HTML input…
$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)}}