One to Many Relationship in Laravel (Hindi)

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 23

  • @sumitmaharjan4702
    @sumitmaharjan4702 2 роки тому +2

    Great job. A very detailed and descriptive way of making people understand about relationship. Thanks a lot. Keep up the great work ❤❤

  • @زينه-س8ز
    @زينه-س8ز Рік тому

    I'm so excited to finish this course to do my course project this semester

  • @mirzawajid7823
    @mirzawajid7823 2 роки тому +2

    Amazing 🤩... Good job bro.... Can you make a video on roles & permissions ? Please

  • @iUmerFarooq
    @iUmerFarooq 3 роки тому

    Wah Bhai :)
    Kiya samjaya ap na.
    Sukriya.

  • @ashrafwebdev8671
    @ashrafwebdev8671 2 роки тому

    Awesome Tutorial.

  • @VishalPrajapati-bd8cv
    @VishalPrajapati-bd8cv 3 роки тому +2

    Sir after completing this larvel tutorial can you make a python socket programming video

  • @vishalsharmaicici
    @vishalsharmaicici 3 роки тому

    thanks brother best video ever

  • @AkhileshYadav-lv3kh
    @AkhileshYadav-lv3kh 2 роки тому

    Badiya sir

  • @muhammadnaveed7953
    @muhammadnaveed7953 3 роки тому

    Zabardast sir g..

  • @mahaminam3806
    @mahaminam3806 2 роки тому

    superbb well explained!!

  • @mastertech894
    @mastertech894 3 роки тому

    indeed you are legend

  • @TheWaqaspuri
    @TheWaqaspuri Рік тому

    public function author() {} do you think if you change that to author1 will it work with belongsTo?

  • @BrothonAlone
    @BrothonAlone 3 роки тому

    Larave use in c++ ?

  • @amarprajapati613
    @amarprajapati613 3 роки тому +1

    Please after that host laravel project on internet

  • @PankajSingh-hz2gr
    @PankajSingh-hz2gr 3 роки тому +2

    First view 🥰

  • @dopamine_Seeker
    @dopamine_Seeker 3 роки тому +1

    I think the goat also wants to learn laravel too...lol

  • @sameedtariq6406
    @sameedtariq6406 2 роки тому

    25:33 bhai aap ke bakri bol rahi hai😂😂😂😂

  • @RabiaSizzleServeX
    @RabiaSizzleServeX 2 роки тому

    1 C:\laravel8
    elation\vendor\laravel\framework\src\Illuminate\Database\Connection.php:527
    PDOException::("SQLSTATE[HY000]: General error: 1005 Can't create table `relation`.`mobiles` (errno: 150 "Foreign key constraint is incorrectly formed")")
    2 C:\laravel8
    elation\vendor\laravel\framework\src\Illuminate\Database\Connection.php:527
    PDOStatement::execute() its erorr generate when i set forigen key set
    Schema::create('mobiles', function (Blueprint $table) {
    $table->id();
    $table->string('model');
    $table->unsignedBigInteger('customer_id');
    $table->foreign('customer_id')->references('id')->on('customers');
    $table->timestamps();
    });
    the second table code is public function up()
    {
    Schema::create('customers', function (Blueprint $table) {
    $table->id();
    $table->string('name');
    $table->string('email');
    $table->timestamps();
    });
    } PDOException::("SQLSTATE[HY000]: General error: 1005 Can't create table `relation`.`mobiles` (errno: 150 "Foreign key constraint is incorrectly formed")") its error

    • @unchainedStud
      @unchainedStud 2 роки тому

      (2) use
      $table->foreignId('customer_id')->references('id')->on('customers');