-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathall.one.dev.txt
11144 lines (6905 loc) · 211 KB
/
all.one.dev.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-----------------------------------------------------------
-----------------------------------------------------------
Searching key words:
Rails6:
Core php:
php api,
Symfony6:
session, form, flesh message, api, sqlite3, database, child template,
symfony6 bundle, vue js , react js, fixture
Cakephp4:
Laravel8:
Codeigniter4:
Javascript: Object
ES6: promise
Vue Js 2.0: vue js form,
Vue Js 3.0: store,
React js : react form, e.target.value in function component,
redux store,
Angular: template driven form, reactive form,
Computer: cluster
SSH : windows to github, key-generate
-----------------------------------------------------------
-----------------------------------------------------------
----> MyGitHub <-------
https://github.com/astechedu/
https://github.com/astechedu/zend3
https://github.com/astechedu/Laminas
https://github.com/astechedu/laravel7
https://github.com/astechedu/yii2basic
https://github.com/astechedu/phpjwt
https://github.com/astechedu/paypal
https://github.com/astechedu/cakephp4
https://github.com/astechedu/codeigniter4
https://github.com/astechedu/corephpapis
https://github.com/astechedu/corephp
https://github.com/astechedu/laravel8-jetstream-inertia
https://github.com/astechedu/laravel8-jetstream-livewire
https://github.com/astechedu/Laravel8-breeze-auth
https://github.com/astechedu/laravel8-basics-beginners
https://github.com/astechedu/laravel8-ui-auth
https://github.com/astechedu/taiwind-tutorial
https://github.com/astechedu/bootstrap-tutorial
https://github.com/astechedu/gittutorial
https://github.com/astechedu/vue2api
https://github.com/astechedu/vue3api
https://github.com/astechedu/angularapi
https://github.com/astechedu/reactapi
https://github.com/astechedu/laravel8reactinertiaspa
https://github.com/astechedu/laravel8vueinertiaspa
https://github.com/astechedu/htmlcssjquerytutorial
https://github.com/astechedu/htmlcssjavascripttutorial
https://github.com/astechedu/html5css3tutorial
https://github.com/astechedu/htmlcsstutorial
-------------------X-----------------------------------------
-------------------------------------------------------------
-------------------------------------------------------------
//YouTube Videos Links
----> AsTechEdu <----
Playlists :
----------
React App (new playlist created):
https://youtube.com/playlist?list=PLxAEnUvHtm9NCBIlCWt38zCPPUu2Hzxkh
VueJs app:
https://youtube.com/playlist?list=PLxAEnUvHtm9MCnsROqNBot4yxlbasdVww
Angular App:
https://youtube.com/playlist?list=PLxAEnUvHtm9PtdrYsSxK-sa-gD-Mu-YUJ
Express:
https://youtube.com/playlist?list=PLxAEnUvHtm9NRbbTyahOfUwGfME4dWFv-
NodeJs:
https://youtube.com/playlist?list=PLxAEnUvHtm9PX3BV5ThIJzhqgrHoxwWBH
MongoDB:
https://youtube.com/playlist?list=PLxAEnUvHtm9PZQ6ujDRB78pGeiy7qE6hQ
Ruby Programs:
https://youtube.com/playlist?list=PLxAEnUvHtm9O0XehRGH-5fE9i466NVMod
PHP Built-in Functions:
https://youtube.com/playlist?list=PLxAEnUvHtm9OLtEjvO216Fuf3jt5K7Ps7
Vedios Links:
-----------------------------------------------------------------------
-----------------------------------------------------------------------
Github Images:
//More option of images, squares, ticks
https://stackoverflow.com/questions/47344571/how-to-draw-checkbox-or-tick-mark-in-github-markdown-table/55523035
Tutorial (All in one):
https://www.w3schools.io/file/markdown-images/
How to show images on github page
//Without size
![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png)
//With size
![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png | width=100)
OR
<img src="https://your-image-url.type" width="300" height="100">
<img src="#" width="200" height="200">
Tick or check mark images:
:heavy_check_mark:
:white_check_mark:
:heavy_check_mark:
[x] row
[ ] row
<input type="checkbox" disabled checked /> works
<input type="checkbox" disabled /> works here too
.........................................................
:white_large_square
:white_check_mark
:red_circle
:heavy_plus_sign
:x:
:+:
mailto links in markdown:
[Contact Us](mailto:admin@cloudhadoop.com)
document in markdown:
[go to heading](#heading)
<a name="heading">
My Heading
</a>
Links with title:
Links title example [example link](URL "link title text")
Create a link with target blank in markdown:
<a href="url" target="_blank">link</a>
Reference Links:
It is reference links [emphasis tutorials][myexample]
[myexample]: /file/markdown-emphasis "markdown emphasis tutorials"
How to add link part of the same document in markdown.
[go to heading](#heading)
Relative Links in markdown:
[links text](relative Url)
[About Us](/about)
<a href="/about">About Us</a>
Inline or External Links in markdown:
[links text](Links Url)
<a href="#">links text</a>
Inline images:
![alt text](image url "image Title")
<img src="image url" alt="alt text" title="image Title" />
..........................................................
//Create tables on README.md
https://www.thecodebuzz.com/display-table-readme-md-file-git-github-markup-format-table/
1.
| FirstName | LastName | City |
| ------------- | ------------- | -------- |
| John | Test1 | NewYork |
| Bob | Test2 | Toronto |
2.
| FirstName | LastName | City
| ------------- | ------------- | -------- |
| `John` | Test1 | `NewYork` |
| `Bob` | Test2 | `Toronto` |
3.
Right align ---:
Left align :---
Center align :---:
| FirstName | LastName | City |
| :------------ | :---: | --------: |
| `John` | Test1 | `NewYork` |
| `Bob` | Test2 | `Los Angeles` |
Table List Example:
| SNo. | Steps |
| ------------- | ------------- |
| 1 | Installation of Laravel Application |
| 2 | Install Breeze |
| 3 | Run Migration |
| 4 | Breeze Authentication Controllers |
| 5 | Breeze Authentication Routes |
| 6 | Breeze Authentication Views |
| 7 | Application Testing |
....................................................
✓ - html checkbox example
:white_check_mark: - emoji checkbox example
☒ - unicode checkbox example
Html item using ✓
Emojis using white_check_mark
Unicode using ☒
.....................................
> #### Heading in blockquotes text
> **bold text**
> _italic text_
> ~~strikethrough text~~
> `code element`
Heading in blockquotes text
bold text
italic text
strikethrough text
code element
...........................................................
> HelloWorld.java:
>
> ```java
> class HelloWorld {
> public static void main(String[] args) {
> System.out.println("Simple hello world program");
> }
>}
>
Output is
HelloWorld.java:
class HelloWorld {
public static void main(String[] args) {
System.out.println("Simple hello world program");
}
}
..............................................................
**It is Bold text**
__It is Bold text__
Following displayed content will be shown to the browser.
It is Bold text
It is Bold text
<strong>It is Bold text</strong>
<strong>It is Bold text</strong>
------------------------------------------
*It is Italic text*
_Underscore text_
--------------------------------------------------------------
-------> Laravel 8 Basics For Beginners <---------
=> Remove Specified Post(delete) <=
=> Flash Message <=
1) Install laravel-8 composer global require laravel/installer
laravel new <AppName>
--OR--
composer create-project laravel/laravel <AppName>
2) cd <AppName> & create migrations
3) php artisan migrate
4) Database configration (env file)
5) php artisan serve
6) php artisan make:controller PostController
7) back to index view with message
8)
Route (Web.php) :
use App\Http\Controllers\PostController;
Route::post('posts/delete/{id}', [PostController::class, 'distroy'])->name('posts.distroy');
public function edit($id)
{
$posts = Post::find($id);
return view('posts.edit', compact('posts'));
}
public function update(Request $request, $id)
{
$posts = Post::find($id);
$posts->name = $request->input('title');
$posts->email = $request->input('description');
$posts->update();
return redirect()->route('index');
}
//Success Flash Message
@if(Session::has('success'))
<div class="alert alert-success">
{{Session::get('success')}}
</div>
@endif
//Error Flash Message
@if(Session::has('fail'))
<div class="alert alert-danger">
{{Session::get('fail')}}
</div>
@endif
//Warning Flash Message
@if(Session::has('warning'))
<div class="alert alert-danger">
{{Session::get('warning')}}
</div>
@endif
//Info Flash Message
@if(Session::has('info'))
<div class="alert alert-danger">
{{Session::get('info')}}
</div>
@endif
return redirect('posts')->with('status', 'Profile updated!');
------------------------------------------------
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Title</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
@foreach($posts as $post)
<tr>
<td>{{ $post['id'] }}</td>
<td>{{ $post['title'] }}</td>
<td>{{ $post['description'] }}</td>
<td>
<a href="{{ route('posts.index') }}">Edit</a>
</td>
</tr>
@endforeach
<tbody>
</tbody>
</table>
<div class="d-flex justify-content-center">
{{ $posts->links() }}
</div>
App Middleware:
use Illuminate\Pagination\Paginator;
Paginator::useBootstrap();
-------------------------------------------------
//default.blade.php
<html>
<head>
<title>App Name - @yield('title')</title>
</head>
<body>
<div class="container">
@yield('content')
</div>
</body>
</html>
--------------------------------------------------
//Extending A Layout:
@extends('layouts.app')
@section('title', 'Page Title')
@section('content')
<p>This is my body content.</p>
@endsection
---------------------------------------------------
<link href="{{ asset('css/font-awesome.min.css') }}" rel="stylesheet">
public function index(){
return view('index');
}
---------------------------------------
public function create(){
return view('posts.create');
}
public function store(Request $request){
$validated = $request->validate([
'title' => ['required', 'unique:posts', 'min:5'],
'description' => ['required', 'min:10'],
]);
$posts = new Post;
$posts->title = $request->title;
$posts->description = $request->description;
$posts->save();
//session()->flash('success',"Data successfully inserted");
return redirect()->route('index');
}
---------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------
===========> Install Laravel 9 <==============
-----------------------------------------------------------------------------------------------
To install Laravel 9.0 you need to launch composer create-project as usual and then you need to set the “dev-develop” version of the “laravel/laravel” package:
----------------------------------------------------------------------------
composer create-project --prefer-dist laravel/laravel laravel-dev dev-master
----------------------------------------------------------------------------
O R
-------------------------------
laravel new laravel-dev --dev
-------------------------------
$ cd laravel-dev
$ php artisan --version
Laravel Framework 9.x-dev
php artisan serve
------------------------------------------------
--------> Laravel 8 Route Parameters <-------------------
Install Laravel:
laravel new AppName
OR
composer create-project --prefer-dist laravel/laravel AppName
------------------------------------------------------------------
//Required Parameters:
Route::get('/user/{id}', function ($id) {
return 'User '.$id;
});
//Optional Parameters:
Route::get('/user/{name?}', function ($name = null) {
return $name;
});
//Regular Expression Constraints:
Route::get('/user/{id}', function ($id) {
})->where('id', '[0-9]+');
-------------------------------------------------------------------
-----------> Bootstrap 5 <-------------
What is Bootstrap:
Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites. Bootstrap 5 is the newest version of Bootstrap.
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
CSS:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
JS:
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
OR
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>
----------------------------------------------------------------------------------------------------
--------> Tailwind CSS <--------------
---------------->>>> Laravel8 Articles <<<<----------------
https://onlinewebtutorblog.com/laravel-8-authentication-using-jetstream-with-livewire/
Find More on Laravel 8 Articles here
How to Create Multi Language Website in Laravel 8
How To Read XML File in Laravel 8 – Example
How To Upload And Save XML Data in Laravel 8
Laravel 8 Ajax Post Request Tutorial
Laravel 8 Authentication using Jetstream with Inertia Js
Laravel 8 Authentication using Jetstream with Livewire
Laravel 8 Authentication with Breeze Tutorial
Laravel 8 Clear Cache of Route, View & Config
Laravel 8 Cron Job Task Scheduling Tutorial
Laravel 8 DataTable Ajax Pagination with Search And Sort
Laravel 8 Firebase Push Notification Tutorial
Laravel 8 Form Validation Methods
Laravel 8 Installation Guide – PHP Framework
Laravel 8 Layouts And Views Complete Guide
Laravel 8 Routing Tutorial Step by Step Guide
Laravel 8 Send Mail using Gmail SMTP Server
Laravel 8 Send Push Notification to Android Using Firebase
Laravel 8 Send Push Notification to IOS Using Firebase
Laravel 8 Stub Customization
Related Posts:
Laravel 8 Authentication using Jetstream with Inertia Js
Jetstream Login Register Email Verification in Laravel 8
File or Image Upload Using Livewire Laravel 8 Tutorial
Laravel 8 Livewire Notification Tutorial with Example
Work with Laravel 8 Livewire Wizard Form Guide
API Authentication using Laravel 8 Sanctum Tutorial
---------------x Laravel8 Articles End x---------------------
----------------> Laravel 8 Badic For Beginnrs ( Middleware ) <-----------------------------
Middleware provide a convenient mechanism for inspecting and
filtering HTTP requests entering your application.
Defining Middleware:
To create a new middleware, use the:-
1. php artisan make:middleware CheckRole
2. php artisan make:middleware CheckAge
1. The application's route middleware.
2. The application's global HTTP middleware stack.
3. The application's route middleware groups
Changes in files:
app/Http/Middleware/CheckRole OR app/Http/Middleware/CheckAge
app/Http/Kernel.php
routes/web.php
//Expression: ->where('id', '[0-9]+'); ->where('name', '[A-Za-z]+');
------------------------------------------------------------------------
--------------------------------------------------------------------------
//App\Http\Middleware\checkAge;
class checkAge
{
public function handle(Request $request, Closure $next)
{
if($request->id == 5){
echo "hi:";
return $next($request);
}
//return response()->json('Your account is inactive');
return redirect('welcome');
}
}
...............
//routes / web.php
use App\Http\Middleware\checkAge;
Route::get('/', function () {
return view('welcome');
});
Route::middleware([checkAge::class])->group(function(){
Route::get('/users/{id}', function ($id) {
echo $id;
});
Route::get('/posts/{name?}', function ($name = null) {
return $name;
});
Route::get('/employee/{id}', function ($id) {
echo $id;
})->where('id', '[0-9]+');
Route::get('/ajay/{id}', function ($id) {
echo $id;
});
Route::get('home', [UserController::class,'contact']);
});
Route::get('/welcome', function () {
return view('index');
});
..............
//App\Http\Kernel.php
protected $routeMiddleware = [
'checkage' => \App\Http\Middleware\checkAge::class,
];
----------------------> X <-------------------------------------
3. The application's route middleware groups
$ php artisan make:middleware CountryCheck
//.. Other routes
Route::view("noaccess", "noaccess");
Route::get("route-1", function(){ echo "<h3>Welcome To Route 1</h3>"; });
// Protected group by middleware
Route::group(["middleware" => ["apprestrict"]], function(){
Route::get("route-2", function(){ echo "<h3>Welcome To Route 2</h3>"; });
Route::get("route-3", function(){ echo "<h3>Welcome To Route 3</h3>"; });
});
---------------------------------------------------------
protected $middlewareGroups = [
...
'apprestrict' => [
\App\Http\Middleware\CountryCheck::class,
],
...
];
-----------------------------------------------------
class CountryCheck
{
public function handle(Request $request, Closure $next)
{
if ($request->country && !in_array($request->country, array("us", "in", "afg"))) {
return redirect("noaccess");
}
return $next($request);
}
}
-------------------------------------------------------------
--------> Laravel 8 Breeze <---------
1) Install laravel-8
>By Installer:
composer global require laravel/installer
laravel new <AppName>
>By Composer:
composer create-project laravel/laravel <AppName>
2) composer require laravel/breeze --dev
3) php artisan breeze:install
4) npm install
5) npm run dev
6) php artisan migrate
* If Problem:
npm install Or npm run dev (Not Working)
* Solution:
npm remove laravel-mix <- Remove
npm install laravel-mix --save-dev <- Install
-------------------------------------------------------------------------------------
--------> Laravel8 Basic For Beginners (Global Middleware) <---------
1) Install laravel-8
>By Installer:
composer global require laravel/installer
laravel new <AppName>
>By Composer:
composer create-project laravel/laravel <AppName>
cd AppName
2)
php artisan serve
3) php artisan make:controller UserController
4) php artisan make:controller AdminController
5) php artisan make:middleware CheckCountry
6) Kernel.php : Create Global 'Country' & Register in $middleware
7) web.php
->middleware('checkCountry');
if ($request->country && !in_array($request->country, array("us", "in", "afg"))) {
return redirect("noaccess");
}
-----------------------------------------------------------------