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
Amardeep Dubey
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.
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.
How to Secure Your Apache Server
1.Enable automatic updates Given that the LAMP stack is based on Linux and that the entire open-source community is working to enhance it, it is also deemed secure. All security updates and patches are accessible as an automatic unattended install on an Ubuntu VPS as soon as they are released in the Ubuntu repos, so … Read more
Linux security
User accounts Since the beginning of the course, all the examples presented were run using a user account. A user account consists of a username and a password. This identifies the user on the system and, hence, maintains security and accountability. Linux also creates groupsfor each user account. A group may contain one or more … Read more
Complete Referance of Blade in Laravel
What is Blade? Blade is the simple, yet powerful templating engine that is included with Laravel. Unlike some PHP templating engines, Blade does not restrict you from using plain PHP code in your templates. Blade template files use the .blade.php file extension and are typically stored in the resources/views directory Blade Template Displaying Data – … Read more
Complete Referance of Controller in Laravel
Controllers Controllers can group related request handling logic into a single class. Instead of defining all of your request handling logic as Closures in route files, you may wish to organize this behavior using Controller classes. Controllers are stored in the app/Http/Controllers directory.Controller extends the base Controller class included with Laravel. Defining Controller Class Run … Read more
Complete Reference and Tutorial of HTML5
An Introduction To HTML. How many types of pages in html? Html tags and its type? Html attribute? Head Tag HTML Tag Title Tag Body Tag Br Tag Heading Tag Paragraph Tag Sub Tag and Super Tag Horizontal Rules
Complete Reference of view in Laravel
What is View? Views contain the HTML served by your application and separate your application logic from your presentation logic. Views are stored in the resources/views directory. Creating View resources/views/aboutme.blade.php Create Route for View Syntax:- Example:- If your route only needs to return a view, you may use the Route::view method.Syntax:- Route::view(โuriโ, โview_nameโ);Example:- Route::view(โaboutโ, โaboutmeโ)
How to add placeholder to select2.js
Single select placeholders Multi-select placeholders Using placeholders with AJAX Select2 supports placeholders for all configurations, including AJAX. You will still need to add in the emptyย <option>ย if you are using a single select. When using Select2ย in single-selection mode, the placeholder option will be passed through theย templateSelectionย callback if specified. You can use some additional logic in this … Read more
Compare select2 and Choices.js’s popularity and activity
Select2.js Choices.js
How to redirect non-www URLs to www?
To redirect your website fromย non-wwwย toย www, add the following lines in your websiteโs .htaccess file: Replaceย yourdomain.comย with your actual domain name.