My question is how can i relationship this pivot table to in groups model?
How can l make form registration fo tow page ?
How to convert the auth name, email and phone to object in laravel?
Laravel package for login with apple ?
What is this IDE?

I have a project in my localhost(xampp) named new_web(in htdocs)
Created virtual host in Windows and trying open project in http://new_web.test
But through this url it lists only folders inside localhost.bit i can use from http://new_web.test/new_web/public
Where it loads correctly
I need to get this contents from http:// new_web.test domain..
Help pls ππ
Use laragon
https://laravel.com/docs/8.x/eloquent-relationships#retrieving-intermediate-table-columns
User
Yes i know that but my question is how can i defined my table name the docs dont detail about that.
$inventory = Inventory::all()->random();
$details = OrderDetails::factory();
$markets = OrdersMarkets::factory()->count(2);
$inventories = OrdersInventories::factory()->count(2);
$orders = Orders::factory()
->has($details->count(2)
->hasAttached(
$inventories, [‘inventory_id’ => $inventory->id], ‘inventories’
)
->hasAttached(
$markets, [‘market_id’ => $inventory->market_id], ‘markets’
), ‘order_details’
)
->count(10000)
->create();
}
All I did was by documentation, but I’m getting error order_details_id doesn’t have default value. What’s wrong with my code, please help.
Thanks in advance
Application not found

Are you sure you imported “Application”?
use AppModelsApplication at the top of your file… That is if “Application” is a model
Seems some core files missing…consider re installation
After generated composer init file

How to convert the auth name, email and phone to object in laravel?
It is already an object. Just get the authenticated user object.
$user = Auth::user()
$user = Auth::user()
okay thanks
After generated composer init file
please share you’re screenshot for the error
How can I solve this problem

I NEED HELP!!
i am trying to only capture the created_at time stamp but it is also capturing the updated_at time-stamp. how do i solve this
i am trying to only capture the created_at time stamp but it is also capturing the updated_at time-stamp. how do i solve this
this is how my store function is in controller

my MYSQL DB : trigger
This may help you
https://stackoverflow.com/questions/29886497/how-to-only-use-created-at-in-laravel/36043796
I want only use created_at , how to do it?
I know:
This can custom timestamps name
const CREATED_AT = ‘created’;
const UPDATED_AT = ‘updated’;
This can disable timestamps
public $timestamps = …
What is this IDE?