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 create manual pagination with search filter in Laravel API?

When you are using To Laravel Project with Connect to Api. Then pagination and search filter (laravel default) will not work in this process. So, you can use DataTable or Manual. So in this blog I am using manual. This is a Search Input filter This is Pagination This is Js in script tag This … Read more

How to create custom pagination without datatable in laravel microservice

Step 1:create button input in blade file Step 2: declare variable like curtpage, pagelimit and total record when you click the button then apply business logic inside jquery/javascript function Step 3: when we get data after ajax success function then apply logic Step 4: set routing in client side Route::prefix(‘/touroperator’)->group(function () use ($namespace) { }); … Read more

Laravel Microservice Error: Call to undefined method GuzzleHttp\Exception\ConnectException::getResponse()

there are no of reason behind this error(i) guzzle version in composer json(ii) connection issue between client and server side microservices client side url in env file: server side url in env file: Solution: in client side and server side url http is mention so to resolve this error we have to change the client … Read more