🚗🏍️ Welcome to Motoshare!

Turning Idle Vehicles into Shared Rides & New Earnings.
Why let your bike or car sit idle when it can earn for you and move someone else forward?

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. Partners earn. Renters ride. Everyone wins.

Start Your Journey with Motoshare

How to Insert Data using Tinker?

In this tutorial i’m going What is tinker and why using it and how to insert data using of tinker in easy way. I’m going to describe each of every thing from sctatch so please follow these tutorials.

What is Tinker?

Tinker Command(php artisan tinker) is used to interact directly with the database table to insert, delete, update data. It executes SQL commands through the command line.

First let’s go to install laravel project

composer create-project --prefer-dist laravel/laravel tinker

After Installation setup database So go to the .env file and add the database credentials. lets go to .env folder and put database name and connect to database.

DB_CONNECTION=mysqlDB_HOST=127.0.0.1DB_PORT=3306DB_DATABASE=crud-operationDB_USERNAME=rootDB_PASSWORD=

Now Create Post table

php artisan make:migration create_posts_table --table=posts

Next go to your create_posts_table and add below column

$table->bigIncrements('id');
$table->integer('user_id')->unsigned();
$table->string('title');
$table->text('content');
$table->timestamps();

Now migrate the table.

php artisan migrate

Next go to your terminal and run below command.

php artisan tinker

Just paste below code as define.

$post = App\Post::create(['title'=>'php post tinker','content'=>'php content store tinker']);

Thanks i hope it’s helpfull for you 👍👍

Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.

Related Posts

Top Free Posting Sites: The Ultimate Content Publishing Guide

In today’s digital landscape, creating high-quality content is only half the battle; success depends heavily on effective distribution to build reach, authority, and online visibility. However, finding…

Read More

URLSNOW Explained: Automated Broken Link Monitoring and URL Organization

Managing digital links used to be a simple task. You copied a link, pasted it into an email or a social media post, and moved on. But…

Read More

The Ultimate Blueprint for a Successful DevOps Freelancer Website

Introduction Many exceptionally skilled DevOps engineers struggle to secure consistent consulting clients because they rely solely on traditional resumes that fail to showcase their true problem-solving capabilities,…

Read More

The Step-by-Step Blueprint for Creating a Profitable DevOps Freelancing Routine

Introduction Choosing to become an independent cloud consultant is one of the most rewarding career moves an IT professional can make, offering unmatched flexibility and income potential….

Read More

Freelance DevOps Career Insights: Overcoming Real-World Technical and Business Hurdles

Introduction The demand for cloud-native architectures, automated delivery pipelines, and resilient infrastructure systems has driven an increasing number of software and systems engineers to transition from traditional…

Read More

Modernize Your Rental Fleet: An Expert Guide to Digital Operations

Introduction In the highly competitive world of mobility, the efficiency of your internal processes determines your ability to compete. Whether you operate a growing car rental business,…

Read More
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x