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

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 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