Giter Site home page Giter Site logo

seeder-for-world-top-fashion-designers-in-laravel's Introduction

Laravel Seeder File for Top Fashion Designers in the World

This can only work with laravel unless you intend to extract the designer's name and use in different project

This seeder file was created for a client's project I worked on recently, the file contains a standard laravel seeder file you can use to populate your database

How to Use

Step 1: Create the model and migration files in laravel

    php artisan make:model Designer -m

Step 2: Add relevant columns to Designer model migration file

    $table->id();
    $table->string('uid')->unique(); // optional unless you want to use the DesignerSeederAlt.php file
    $table->string('designer_name');

Step 3: Copy Seeder file to designated folder

After the "Designer" model is created, you can copy the file "DesignerSeeder.php" into your laravel seeder folder ./your_laravel_project_root/database/seeders

   sudo cp DesignerSeeder.php ./your_laravel_project_root/database/seeders

Step 4: Run Laravel migration command

    php artisan migrate

Important

Please note the only difference between "DesignerSeederAlt.php" file and "DesignerSeeder.php" is the seperate column for "uid" in "DesignerSeederAlt.php"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.