MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Expected response code 250 but got code “530”, with message “530 5.7.1 Authentication required

I got stuck on this error I trying to configure SMTP mail on laravel here is my configuration on .env file This is Solved this Error your mail.php on config you declare host as smtp.mailgun.org and port is 587 while on env is different. you need to change your mail.php to if you desire to use mailtrap.Then run this command php artisan config:cache env() helper makes … Read more

Building an Admin Dashboard Layout With CSS and a Touch of JavaScript

In this updated tutorial, we’ll create a responsive admin dashboard layout with CSS and a touch of JavaScript. To build it, we’ll borrow some ideas from the WordPress dashboard, such as its collapsible sidebar menu. Throughout the tutorial, we’ll face plenty of challenges, but ones that will give us good practice for enhancing our front-end … Read more

Laravel Passport Trying to get property ‘secret’ of non-object

THIS IS FOR LARAVEL 8 AND LARAVEL/PASSPORT The first thing is to run the php artisan passport:install. Inside your database table oauth_clients, under column name, look for Laravel Personal Access Client. Copy the secret beside Laravel Personal Access Client. Open AuthServiceProvider, then paste the secret inside the boot method where the CLIENT_SECRET is below: And don’t forget to also add the ID of the secret from your … Read more

file_put_contents(C:\xampp\htdocs\exam_system\storage\framework/sessions/FF): failed to open stream: No such file or directory => Soled this Error

Step 1: type your TERMINAL this Command composer update Step 2: type your TERMINAL this Command php artisan r:clear Step 3: type your TERMINAL this Command php artisan v:clear Step 4: type your TERMINAL this Command php artisan c:Cache Now is your Project is Running

JavaScript Cheat Sheet — JSON, Loops, and Promises

JavaScript is one of the most popular programming languages for web programming. In this article, we’ll look at the basic syntax of modern JavaScript JSON We can create JSON strings from JavaScript objects with the JSON.stringify method: And we can convert JSON strings back to JavaScript objects with JSON.parse : const obj = JSON.parse(json); We can use it to … Read more

CRUD Operations in Laravel using ajax

Step 1 – Install Laravel 5.8 First we want to Download Laravel 5.8 version for developing Crud application using Ajax. For this you have to open your terminal or command prompt and write below command. It will download Laravel 5.8 in your define directory. composer create-project laravel/laravel=5.8 ajax-crud –prefer-dist Step 2 – Laravel 5.8 Database … Read more

How to fetch data from multiple tables in laravel

Step 1: Download Laravel Framework For download fresh copy of Laravel framework, so first we have to into command prompt and run following command. This command will make join_table directory and under that directory it will download Laravel framework latest version. Step 2: Make Database connection After download and install Laravel framework and after this we want … Read more

How to create new microservices in Laravel framework

Step1- Open command prompt or Git Bash on xampp/htdocs directory Step2- Create Laravel New Project write this command composer create-project –prefer-dist laravel/laravel scmgalaxy “5.5.*” Step3- Move to project directory on git bash cd scmgalaxy Step4- Project directory on git bash on this command Step5- Create Database in Mysql Server Step5- Set Mysql Server Username ,Password and Database Name in .env file … Read more