وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Mastering Laravel 10 Query Builder, Eloquent & Relationships

سرفصل های دوره

From ZERO to Hero Using Migrations, Factories, Seeders, Query Builder, Eloquent ORM, Relationships & Polymorphism!


1 - Course Introduction
  • 1 - Introduction
  • 2 - 2.Course-Structure
  • 2 - Course structure
  • 3 - GitHub Main Branch.txt
  • 3 - Source code

  • 2 - Mastering Migrations
  • 4 - Project database setup
  • 5 - Database configuration file
  • 6 - What are migrations and how do they work
  • 7 - Creating our first migration
  • 7 - GitHub Source Code Episode 8.txt
  • 8 - Column modifiers
  • 8 - GitHub Source Code Episode 9.txt
  • 9 - Running migrations different options
  • 10 - Squashing migrations
  • 11 - GitHub Source Code Episode 12.txt
  • 11 - Modifying Columns
  • 12 - GitHub Source Code Episode 13.txt
  • 12 - Renaming Columns
  • 13 - GitHub Source Code Episode 14.txt
  • 13 - Migrations Cleanup
  • 14 - Dropping Columns
  • 14 - GitHub Source Code Episode 15.txt

  • 3 - Mastering Factories Seeders
  • 15 - Factories vs Seeders What is the difference
  • 16 - Defining our first Factory
  • 16 - GitHub Source Code Episode 17.txt
  • 17 - GitHub Source Code Episode 18.txt
  • 17 - Using a Factory through a Seeder
  • 18 - Using a Factory through Artisan Tinker
  • 19 - Defining our first Seeder
  • 19 - GitHub Source Code Episode 20.txt
  • 20 - GitHub Source Code Episode 21.txt
  • 20 - Using a JSON file to read Data for our Seeders
  • 21 - Calling Multiple Seeders
  • 21 - GitHub Source Code Episode 22.txt

  • 4 - Mastering the Query Builder PART 1
  • 22 - GitHub Source Code Episode 23.txt
  • 22 - Primary Foreign Keys
  • 23 - GitHub Source Code Episode 24.txt
  • 23 - Introduction to the Query Builder
  • 24 - First Value and Find Methods
  • 24 - GitHub Source Code Episode 25.txt
  • 25 - GitHub Source Code Episode 26.txt
  • 25 - Retrieving a List of Column Values
  • 26 - GitHub Source Code Episode 27.txt
  • 26 - Inserts Through the Query Builder
  • 27 - GitHub Source Code Episode 22.txt
  • 27 - Insert Get Id Through the Query Builder
  • 28 - GitHub Source Code Episode 29.txt
  • 28 - Updating Through the Query Builder
  • 29 - Deleting Through the Query Builder
  • 29 - GitHub Source Code Episode 30.txt
  • 30 - Aggregates Methods
  • 30 - GitHub Source Code.txt
  • 31 - GitHub Source Code.txt
  • 31 - whereNot orWhereNot
  • 32 - Determining if Records Exist
  • 32 - GitHub Source Code.txt
  • 33 - GitHub Source Code.txt
  • 33 - whereBetween whereNotBetween Methods
  • 34 - Debugging Through the Query Builder

  • 5 - Mastering the Query Builder PART 2
  • 35 - Database Transactions
  • 35 - GitHub Source Code.txt
  • 36 - GitHub Source Code.txt
  • 36 - Pessimistic Locking
  • 37 - Chunking Data
  • 37 - GitHub Source Code.txt
  • 38 - GitHub Source Code.txt
  • 38 - Streaming Results Lazily
  • 39 - GitHub Source Code.txt
  • 39 - Raw Methods
  • 40 - GitHub Source Code.txt
  • 40 - Ordering Through the Query Builder
  • 41 - Full Text indexes
  • 41 - GitHub Source Code.txt
  • 42 - GitHub Source Code.txt
  • 42 - Limit Offset Through the Query Builder
  • 43 - Conditional Clauses
  • 43 - GitHub Source Code.txt
  • 44 - GitHub Source Code.txt
  • 44 - Removing Existing Ordering
  • 45 - GitHub Gist.txt
  • 45 - GitHub Source Code.txt
  • 45 - Using the paginate method
  • 46 - GitHub Source Code.txt
  • 46 - Using the simplePaginate method

  • 6 - Mastering Eloquent ORM
  • 47 - GitHub Source Code.txt
  • 47 - Using the cursorPaginate method
  • 48 - Introduction to Eloquent
  • 49 - Eloquent Model Conventions
  • 49 - GitHub Source Code.txt
  • 50 - GitHub Source Code.txt
  • 50 - The fillable And guarded Properties
  • 51 - Building Queries
  • 51 - GitHub Source Code.txt
  • 52 - 54.Retrieving-single-models
  • 52 - GitHub Source Code.txt
  • 52 - Retrieving Single Models
  • 53 - GitHub Source Code.txt
  • 53 - Inserting Creating Models
  • 54 - GitHub Source Code.txt
  • 54 - Retrieving All Models
  • 55 - GitHub Source Code.txt
  • 55 - firstOrCreate firstOrNew
  • 56 - GitHub Source Code.txt
  • 56 - Updating Models
  • 57 - Attribute Changes isDirtyisClean wasChanged
  • 57 - GitHub Source Code.txt
  • 58 - GitHub Source Code.txt
  • 58 - UpdateOrCreate Upserting Models
  • 59 - Deleting Models
  • 59 - GitHub Source Code.txt
  • 60 - GitHub Source Code.txt
  • 60 - Soft Deleting Models
  • 61 - GitHub Source Code.txt
  • 61 - Pruning Models
  • 62 - GitHub Source Code.txt
  • 62 - Replicating Models
  • 63 - GitHub Source Code.txt
  • 63 - Global Scopes
  • 64 - Local Scopes
  • 64 - httpsgithubcomcodewithdaryudemylaraveldbtreeep66dynamicscopes.txt
  • 65 - Dynamic Scopes
  • 65 - GitHub Source Code.txt
  • 66 - GitHub Source Code.txt
  • 66 - Using a Trait to store Scopes

  • 7 - Mastering Relationships PART 1
  • 67 - What are Relationships
  • 68 - GitHub Source Code.txt
  • 68 - One to One Relationship
  • 69 - GitHub Source Code.txt
  • 69 - One to Many Belongs To Relationship
  • 70 - GitHub Source Code.txt
  • 70 - Many to Many Relationship
  • 71 - Eager Loading
  • 71 - GitHub Source Code.txt
  • 72 - GitHub Source Code.txt
  • 72 - Has one Through Relationship
  • 73 - GitHub Source Code.txt
  • 73 - Has One of Many Relationship
  • 74 - GitHub Source Code.txt
  • 74 - Has Many Through Relationship

  • 8 - Mastering Advanced Relationships PART 2
  • 75 - What are Polymorphic Relationships
  • 76 - GitHub Source Code.txt
  • 76 - One to One Polymorphic Relationship
  • 77 - GitHub Source Code.txt
  • 77 - One to Many Polymorphic Relationship
  • 78 - GitHub Source Code.txt
  • 78 - One of Many Polymorphic Relationship
  • 79 - GitHub Source Code.txt
  • 79 - Many to Many Polymorphic Relationship

  • 9 - Create a Advanced Laravel Blog
  • 80 - Laravel Sanctum Tutorial Setup Custom Authentication System.txt
  • 80 - Laravel Tutorial for Beginners 45 hours.txt
  • 80 - Project Setup
  • 80 - cdwblog-master.zip
  • 81 - Installing Laravel Breeze
  • 81 - cdwblog-master.zip
  • 82 - Defining Migrations
  • 82 - cdwblog-master.zip
  • 83 - Defining Models Relationships
  • 83 - cdwblog-master.zip
  • 84 - Creating Models Controllers Factories Migrations
  • 84 - cdwblog-master.zip
  • 85 - Inserting Data Using Factories Seeders
  • 85 - cdwblog-master.zip
  • 86 - Setting up Article Routes
  • 86 - cdwblog-master.zip
  • 87 - Setting up The Frontend Pages
  • 87 - cdwblog-master.zip
  • 88 - The index Method
  • 88 - cdwblog-master.zip
  • 89 - The show Method
  • 89 - cdwblog-master.zip
  • 90 - The create store Methods
  • 90 - cdwblog-master.zip
  • 91 - The edit update Methods
  • 91 - cdwblog-master.zip
  • 92 - The destroy method
  • 92 - cdwblog-master.zip
  • 93 - Using Policies For Unauthorized Users
  • 93 - cdwblog-master.zip
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 14149
    حجم: 3315 مگابایت
    مدت زمان: 457 دقیقه
    تاریخ انتشار: ۲۹ خرداد ۱۴۰۲
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید