[Vuejs]-How to insert into two table using laravel 8? This is my code

0👍

Assuming that you have relationships defined as

class Inventory_transaction extends Model
{
    public function transaction_logs()
    {
        return $this->hasMany(Transaction_log::class);
    }
}

you can use the relation to insert related record

public function store(Request $request)
{
    $validated = $request->validate($this->validation());

    $transaction = Inventory_transaction::create($validated);

    $transaction->transaction_logs()->create(['description' => 'Transaction Added.']);

    return $this->respondWithMessage('Transaction added');
}

Having said that you should seriously spend some time going through Laravel docs, it will enable you to understand the basics very well – Laravel has one of the best documentation with lots of code examples for easy understanding of basic

Laravel relations: https://laravel.com/docs/8.x/eloquent-relationships#introduction

Leave a comment