Laravel Eloquent Mass Mass Affectations
use App\Models\Flight;
$flight = Flight::create([
'name' => 'London to Paris',
]);
Cooperative Crab
use App\Models\Flight;
$flight = Flight::create([
'name' => 'London to Paris',
]);