xxxxxxxxxx
#Install neovim with darkone, NERDTree, vim-airline and auto-pairs
#Fedora
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/fedora_install.sh
#Debian/Ubuntu
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/debian_install.sh
#Arch
git clone https://github.com/bisaek/neovim-config.git && sh neovim-config/arch_install.sh
# For more Info: https://github.com/bisaek/neovim-config
xxxxxxxxxx
Neovim makes the best of Vim with completely re-designed plug-in architecture, better GUI ecosystem, first-class support for embedding, and more.
xxxxxxxxxx
//database/factories/UserFactory.php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Course>
*/
class CourseFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition(): array
{
return [
'course_name' => $this->faker->sentence(3), // Random course name (e.g., 'PHP Programming')
'duration' => $this->faker->randomElement(['3 months', '6 months', '1 year']), // Random duration
'start_date' => $this->faker->date(), // Random start date
'end_date' => $this->faker->date(), // Random end date
'status' => $this->faker->randomElement([0, 1]), // Random status (0 or 1)
];
}
}