Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Mastering Laravel 10 Query Builder, Eloquent & Relationships, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:07
    Introduction
  2. Урок 2. 00:02:03
    Course structure
  3. Урок 3. 00:00:53
    Source code
  4. Урок 4. 00:05:39
    Project & database setup
  5. Урок 5. 00:02:35
    Database configuration file
  6. Урок 6. 00:05:29
    What are migrations and how do they work?
  7. Урок 7. 00:03:41
    Creating our first migration
  8. Урок 8. 00:04:39
    Column modifiers
  9. Урок 9. 00:06:42
    Running migrations & different options
  10. Урок 10. 00:02:34
    Squashing migrations
  11. Урок 11. 00:03:41
    Modifying Columns
  12. Урок 12. 00:01:57
    Renaming Columns
  13. Урок 13. 00:00:50
    Migrations Cleanup
  14. Урок 14. 00:02:29
    Dropping Columns
  15. Урок 15. 00:01:16
    Factories vs Seeders - What is the difference?
  16. Урок 16. 00:04:37
    Defining our first Factory
  17. Урок 17. 00:03:02
    Using a Factory through a Seeder
  18. Урок 18. 00:01:22
    Using a Factory through Artisan Tinker
  19. Урок 19. 00:06:47
    Defining our first Seeder
  20. Урок 20. 00:04:15
    Using a JSON file to read Data for our Seeders
  21. Урок 21. 00:00:56
    Calling Multiple Seeders
  22. Урок 22. 00:06:20
    Primary & Foreign Keys
  23. Урок 23. 00:06:29
    Introduction to the Query Builder
  24. Урок 24. 00:03:41
    First, Value and Find Methods
  25. Урок 25. 00:00:45
    Retrieving a List of Column Values
  26. Урок 26. 00:06:15
    Inserts Through the Query Builder
  27. Урок 27. 00:01:21
    Insert & Get Id Through the Query Builder
  28. Урок 28. 00:06:37
    Updating Through the Query Builder
  29. Урок 29. 00:03:00
    Deleting Through the Query Builder
  30. Урок 30. 00:03:29
    Aggregates Methods
  31. Урок 31. 00:02:31
    whereNot & orWhereNot
  32. Урок 32. 00:01:50
    Determining if Records Exist
  33. Урок 33. 00:01:38
    whereBetween & whereNotBetween Methods
  34. Урок 34. 00:01:59
    Debugging Through the Query Builder
  35. Урок 35. 00:06:10
    Database Transactions
  36. Урок 36. 00:02:42
    Pessimistic Locking
  37. Урок 37. 00:02:44
    Chunking Data
  38. Урок 38. 00:04:09
    Streaming Results Lazily
  39. Урок 39. 00:03:37
    Raw Methods
  40. Урок 40. 00:03:51
    Ordering Through the Query Builder
  41. Урок 41. 00:05:01
    Full Text indexes
  42. Урок 42. 00:02:40
    Limit & Offset Through the Query Builder
  43. Урок 43. 00:02:16
    Conditional Clauses
  44. Урок 44. 00:01:50
    Removing Existing Ordering
  45. Урок 45. 00:08:04
    Using the paginate() method
  46. Урок 46. 00:01:47
    Using the simplePaginate() method
  47. Урок 47. 00:04:19
    Using the cursorPaginate() method
  48. Урок 48. 00:04:07
    Introduction to Eloquent
  49. Урок 49. 00:13:38
    Eloquent Model Conventions
  50. Урок 50. 00:04:57
    The $fillable And $guarded Properties
  51. Урок 51. 00:02:53
    Building Queries
  52. Урок 52. 00:08:39
    Retrieving Single Models
  53. Урок 53. 00:05:14
    Inserting / Creating Models
  54. Урок 54. 00:04:32
    Retrieving All Models
  55. Урок 55. 00:04:35
    firstOrCreate & firstOrNew
  56. Урок 56. 00:03:51
    Updating Models
  57. Урок 57. 00:07:33
    Attribute Changes [isDirty,В isClean, &В wasChanged]
  58. Урок 58. 00:04:16
    UpdateOrCreate & Upserting Models
  59. Урок 59. 00:02:47
    Deleting Models
  60. Урок 60. 00:05:40
    Soft Deleting Models
  61. Урок 61. 00:02:44
    Pruning Models
  62. Урок 62. 00:01:59
    Replicating Models
  63. Урок 63. 00:07:46
    Global Scopes
  64. Урок 64. 00:06:04
    Local Scopes
  65. Урок 65. 00:03:59
    Dynamic Scopes
  66. Урок 66. 00:02:09
    Using a Trait to store Scopes
  67. Урок 67. 00:01:33
    What are Relationships?
  68. Урок 68. 00:14:15
    One to One Relationship
  69. Урок 69. 00:08:05
    One to Many / Belongs To Relationship
  70. Урок 70. 00:16:16
    Many to Many Relationship
  71. Урок 71. 00:02:45
    Eager Loading
  72. Урок 72. 00:08:25
    Has one Through Relationship
  73. Урок 73. 00:06:02
    Has One of Many Relationship
  74. Урок 74. 00:07:15
    Has Many Through Relationship
  75. Урок 75. 00:01:18
    What are Polymorphic Relationships?
  76. Урок 76. 00:10:01
    One to One Polymorphic Relationship
  77. Урок 77. 00:09:03
    One to Many Polymorphic Relationship
  78. Урок 78. 00:02:42
    One of Many Polymorphic Relationship
  79. Урок 79. 00:07:01
    Many to Many Polymorphic Relationship
  80. Урок 80. 00:01:54
    Project Setup
  81. Урок 81. 00:03:18
    Installing Laravel Breeze
  82. Урок 82. 00:08:31
    Defining Migrations
  83. Урок 83. 00:05:46
    Defining Models / Relationships
  84. Урок 84. 00:01:50
    Creating Models, Controllers, Factories & Migrations
  85. Урок 85. 00:09:59
    Inserting Data Using Factories & Seeders
  86. Урок 86. 00:04:14
    Setting up Article Routes
  87. Урок 87. 00:03:04
    Setting up The Frontend Pages
  88. Урок 88. 00:08:49
    The index() Method
  89. Урок 89. 00:09:50
    The show() Method
  90. Урок 90. 00:16:47
    The create() & store() Methods
  91. Урок 91. 00:12:20
    The edit() & update() Methods
  92. Урок 92. 00:02:44
    The destroy() method
  93. Урок 93. 00:04:43
    Using Policies For Unauthorized Users