Never stop talking " STOP the Gaza Genocide "

Laravel Framework | Php Anonymous

Php Anonymous

Php Anonymous

learn by easy steps. Happy Code :) .

تفاصيل الكورس

دروس الكورس

  1. 1 | #1 Laravel Overview 00:11:10
  2. 2 | #2 PSR-FIG Overview 00:12:34
  3. 3 | #3 What's MVC Architecture 00:10:56
  4. 4 | #4 install laravel in mac osx 00:18:19
  5. 5 | #5 install laravel in linux 00:17:59
  6. 6 | #6 install laravel in windows 00:14:45
  7. 7 | #7 laravel infrastructure folders and files 00:25:06
  8. 8 | #8 Routing GET,POST,PUT,PATCH,DELETE and ANY methods 00:11:16
  9. 9 | #9 Routing Options , Match methods 00:05:18
  10. 10 | #10 Route Constraints 00:14:49
  11. 11 | #11 Routing Fallback,Group,Redirect,Prefix,View 00:09:39
  12. 12 | #12 Routing Named Routes 00:08:20
  13. 13 | #13 Routing with a First Controller with Namespace 00:06:53
  14. 14 | #14 Routing Sub+Domains 00:02:33
  15. 15 | #15 Routing Implicit Enum Binding 00:03:19
  16. 16 | #16 Routing With Middleware basic 00:13:46
  17. 17 | #17 Middleware Connection Between Routing And Controller with Only Method 00:04:21
  18. 18 | #18 Route Macros 00:04:11
  19. 19 | #19 Resource Route Controller, CRUD , Index , Show methods 00:10:53
  20. 20 | #20 Resource Route Read , Update , Delete methods 00:10:20
  21. 21 | #21 Resource Route Return View Type 00:03:58
  22. 22 | #22 connect to your database , introduce about migration database 00:13:06
  23. 23 | #23 migration artisan commands 00:03:54
  24. 24 | #24 create your first migration table 00:12:41
  25. 25 | #25 Create Your First Model 00:15:22
  26. 26 | #26 Update Data Your First eloquent model 00:16:03
  27. 27 | #27 show , destroy data 00:04:11
  28. 28 | #28 Restore,forceDelete,WithTrahsed 00:14:49
  29. 29 | #29 how to use and custom soft delete column name 00:04:50
  30. 30 | #30 Model Tricks Get Attribute Column and Do Some Changes on it 00:08:02
  31. 31 | #31 validator message with views @error 00:13:58
  32. 32 | #32 update validation with $errors any,all methods another way 00:04:01
  33. 33 | #33 inherit blade @include , @extends , @yield 00:05:49
  34. 34 | #34 @stack , @push in other place 00:07:35
  35. 35 | #35 @prepend , @prependOnce , @once 00:03:49
  36. 36 | #36 @includeIf , @includeWhen @includeUnless , @includeFirst assign variables 00:08:45
  37. 37 | #37 @each Directive to fetch loop in one line 00:03:36
  38. 38 | #38 create your first directive 00:03:15
  39. 39 | #39 Custom If Statements Directive 00:05:54
  40. 40 | #40 view composer Create A Global or Private Variable 00:04:47
  41. 41 | #41 add new column and how to use @selected , @checked directives 00:11:15
  42. 42 | #42 seeding with model , basic object 00:07:10
  43. 43 | #43 seeding with factories and faker php 00:06:19
  44. 44 | #44 seeding ,use state with Sequence 00:03:44
  45. 45 | #45 Relationship what is belongsTo 00:14:10
  46. 46 | #46 Relationship belongsToMany 00:10:15
  47. 47 | #47 relationship hasMany,hasOne 00:07:02
  48. 48 | #48 short foreign key relationship in migration 00:04:16
  49. 49 | #49 relationship hasOneThrough , hasManyThrough 00:16:11
  50. 50 | #50 relationship One To One using morphs , morphOne , morphTo 00:12:00
  51. 51 | #51 relationship One To Many using morphMany 00:09:00
  52. 52 | #52 relationship Many To Many using morphToMany , morphedByMany , attach,sync,save,saveMany 00:14:50
  53. 53 | #53 Query Builder VS Eloquent ORM , when to use? 00:30:45
  54. 54 | #54 laravel Authentication scaffolding 00:15:27
  55. 55 | #55 Authentication verify account 00:09:59
  56. 56 | #56 add additional column with register 00:04:23
  57. 57 | #57 in login form use another credentials column with email 00:05:16
  58. 58 | #58 sessions put,get,forget,push,has,exists,missing and all method 00:22:28
  59. 59 | #59 session table in your database driver 00:06:01
  60. 60 | #60 sessions with Redis driver 00:10:23
  61. 61 | #61 session with apc Alternative PHP Cache 00:03:00
  62. 62 | #62 Maillable using markdown,html,text-plain and more 00:13:33
  63. 63 | #63 Millable Attachment file And toMailAttachment 00:12:22
  64. 64 | #64 how to integrate gmail smtp in your project 00:02:41
  65. 65 | #65 Queue setting up and make a Demo Job , using database connection 00:11:43
  66. 66 | #66 queue with Mailable , queue ,later ,now ,addMinutes , cc,bcc 00:07:08
  67. 67 | #67 Queue Failed Jobs & what is the different between queue:work and queue:listen with once,daemon 00:09:37
  68. 68 | #68 Job Batching then,catch,finally,bus,batch,batchable 00:23:40
  69. 69 | #69 form request how to make and use authorize,rules,attributes 00:08:42
  70. 70 | #70 how to create custom validation rule in form request 00:06:01
  71. 71 | #71 Observer , how to use with your Model 00:13:26
  72. 72 | #72 boot method with creating,created , updating,updated,saving,saved,and more methods 00:07:19
  73. 73 | #73 observer replicating data with fill,save 00:06:03
  74. 74 | #74 Events and Listeners how to use ! 00:22:06
  75. 75 | #75 Gate how it work and how can use with allows,denies,authorize,@can,@elsecan methods 00:21:44
  76. 76 | #76 Gate and policies role and permissions 00:09:28
  77. 77 | #77 FileSystem setting up & how to upload file and use Storage with url,exists,delete 00:14:59
  78. 78 | #78 FileSystem Update File Logic with tricks using Model Observers 00:20:06
  79. 79 | #79 FileSystem delete or make directory , copy , get all files , put , prepend , append and more 00:21:16
  80. 80 | #80 Logging Track everything in your project Part 1 00:10:04
  81. 81 | #81 Logging Make A new Channel and Custom log file part2 00:05:32
  82. 82 | #82 how to pause tracking logging in your project part 3 00:02:21
  83. 83 | #83 track your errors with slack in your project part 4 00:06:55
  84. 84 | #84 handle error with abort , first , firsOrFail, find,FindOrFail Or in Dynamic Model Param 00:05:10
  85. 85 | #85 Collections in Laravel Create,get,sort,grouped,keys,combine,search,filter,slice,diff,flip 00:26:02
  86. 86 | #86 collection other and advanced methods part2 00:27:54
  87. 87 | #87 resourceCollection with jsonResponse 00:15:04
  88. 88 | #88 api prepare JWT driver part1 00:10:02
  89. 89 | #89 prepare auth register,login,logout,profile and handle JWT Token with localization pkg part 2 00:20:08
  90. 90 | #90 build and design a standard structure api and prepare localization middleware part 3 00:19:14
  91. 91 | #91 maintenance your structure to make a clean code as well - part4 00:14:06
  92. 92 | #92 prepare event to active email and make a new auth api function part5 00:18:31
  93. 93 | #93 send email code with Event & Mail part6 00:12:09
  94. 94 | #94 active code by email address endpoint part7 00:07:51
  95. 95 | #95 active code by mobile using twilio part8 00:28:09
  96. 96 | #96 What is HMVC and how to prepare your first module Users with all elements part9 00:22:18
  97. 97 | #97 add event in service Provider In Users Module part10 00:06:25
    تقييمات الطلاب

    ( 5 من 5 )

    ١ تقييمات
    5 نجوم
    100%
    4 نجوم
    0%
    3 نجوم
    0%
    نجمتين
    0%
    نجمة
    0%
    Y
    Youtube

    02-07-2024
    Laravel-10 / in Arabic

    ماهو اطار عمل Laravel الاصدار العاشر وسنتعلم خصائص الاطار الى الاحتراف فى هذه الدورة لن تحتاج الى اي مصادر اخري ( هذا العمل مجانا لوجه الله تعالى )