├── public ├── favicon.ico ├── robots.txt ├── .htaccess └── index.php ├── README.md ├── resources ├── css │ └── app.css ├── views │ ├── student.blade.php │ └── employee.blade.php └── js │ ├── app.js │ └── bootstrap.js ├── database ├── .gitignore ├── seeders │ └── DatabaseSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2023_05_14_175630_create_students_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2019_12_14_000001_create_personal_access_tokens_table.php └── factories │ └── UserFactory.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── front-end ├── src │ ├── layouts │ │ └── admin │ │ │ ├── auth │ │ │ ├── Register.jsx │ │ │ └── Login.jsx │ │ │ ├── Footer.jsx │ │ │ ├── MasterLayout.jsx │ │ │ ├── Navbar.jsx │ │ │ └── Sidebar.jsx │ ├── pages │ │ ├── About.jsx │ │ ├── Contact.jsx │ │ ├── Dashbaord.jsx │ │ ├── Addstudents.jsx │ │ ├── Student copy.jsx │ │ ├── Addstudentscop.jsx │ │ ├── Addemp.jsx │ │ ├── Student.jsx │ │ ├── Main Addstudents.jsx │ │ └── Home.jsx │ ├── setupTests.js │ ├── App.test.js │ ├── router │ │ └── index.js │ ├── assets │ │ └── js │ │ │ ├── datatables-simple-demo.js │ │ │ └── scripts.js │ ├── App.js │ ├── reportWebVitals.js │ └── index.js ├── src - Copy │ ├── components │ │ ├── auth │ │ │ ├── Register.jsx │ │ │ └── Login.jsx │ │ ├── Footer.jsx │ │ ├── Navbar.jsx │ │ └── Sidebar.jsx │ ├── pages │ │ ├── About.jsx │ │ ├── Contact.jsx │ │ ├── Dashbaord.jsx │ │ ├── Addstudents.jsx │ │ ├── Student copy.jsx │ │ ├── Addstudentscop.jsx │ │ ├── Addemp.jsx │ │ ├── Student.jsx │ │ └── Main Addstudents.jsx │ ├── setupTests.js │ ├── App.test.js │ ├── assets │ │ └── js │ │ │ ├── datatables-simple-demo.js │ │ │ └── scripts.js │ ├── reportWebVitals.js │ ├── index.js │ ├── router │ │ └── index.js │ └── App.js ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── public - Copy │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── .gitignore ├── package.json └── README.md ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── app ├── Models │ ├── Students.php │ ├── emp.php │ ├── Student.php │ └── User.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── ApiController.php │ │ └── StudentController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── Authenticate.php │ │ ├── ValidateSignature.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Console │ └── Kernel.php └── Exceptions │ └── Handler.php ├── .gitattributes ├── package.json ├── vite.config.js ├── .gitignore ├── .editorconfig ├── routes ├── web.php ├── channels.php ├── console.php └── api.php ├── config ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── sanctum.php ├── filesystems.php ├── cache.php ├── queue.php ├── mail.php ├── auth.php ├── logging.php ├── database.php ├── app.php └── session.php ├── phpunit.xml ├── .env.example ├── artisan └── composer.json /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # e-comerce -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /resources/views/student.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/employee.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /front-end/src/layouts/admin/auth/Register.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /front-end/src - Copy/components/auth/Register.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /front-end/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /front-end/public - Copy/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /front-end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public/favicon.ico -------------------------------------------------------------------------------- /front-end/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public/logo192.png -------------------------------------------------------------------------------- /front-end/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public/logo512.png -------------------------------------------------------------------------------- /front-end/public - Copy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public - Copy/favicon.ico -------------------------------------------------------------------------------- /front-end/public - Copy/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public - Copy/logo192.png -------------------------------------------------------------------------------- /front-end/public - Copy/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nasratullah-Shafiq/e-comerce/HEAD/front-end/public - Copy/logo512.png -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 5 |
| ID | 43 |Name | 44 |Course | 45 |Phone No | 47 |Edit | 48 |Delete | 49 ||
| ID | 43 |Name | 44 |Course | 45 |Phone No | 47 |Edit | 48 |Delete | 49 ||
| ID | 40 |Name | 41 |Course | 42 |Phone No | 44 |Edit | 45 |Delete | 46 ||
| {student.id} | 53 |{student.name} | 54 |{student.course} | 55 |{student.email} | 56 |{student.phone} | 57 |Edit | 58 |59 | |
| ID | 40 |Name | 41 |Course | 42 |Phone No | 44 |Edit | 45 |Delete | 46 ||
| {student.id} | 53 |{student.name} | 54 |{student.course} | 55 |{student.email} | 56 |{student.phone} | 57 |Edit | 58 |59 | |
| Name | 82 |Position | 83 |Office | 84 |Age | 85 |Start date | 86 |Salary | 87 |
|---|---|---|---|---|---|
| Name | 92 |Position | 93 |Office | 94 |Age | 95 |Start date | 96 |Salary | 97 |
| Tiger Nixon | 102 |System Architect | 103 |Edinburgh | 104 |61 | 105 |2011/04/25 | 106 |$320,800 | 107 |
| Garrett Winters | 110 |Accountant | 111 |Tokyo | 112 |63 | 113 |2011/07/25 | 114 |$170,750 | 115 |
| Ashton Cox | 118 |Junior Technical Author | 119 |San Francisco | 120 |66 | 121 |2009/01/12 | 122 |$86,000 | 123 |
| Cedric Kelly | 126 |Senior Javascript Developer | 127 |Edinburgh | 128 |22 | 129 |2012/03/29 | 130 |$433,060 | 131 |
| Airi Satou | 134 |Accountant | 135 |Tokyo | 136 |33 | 137 |2008/11/28 | 138 |$162,700 | 139 |
| Brielle Williamson | 142 |Integration Specialist | 143 |New York | 144 |61 | 145 |2012/12/02 | 146 |$372,000 | 147 |
| Herrod Chandler | 150 |Sales Assistant | 151 |San Francisco | 152 |59 | 153 |2012/08/06 | 154 |$137,500 | 155 |
| Rhona Davidson | 158 |Integration Specialist | 159 |Tokyo | 160 |55 | 161 |2010/10/14 | 162 |$327,900 | 163 |
| Colleen Hurst | 166 |Javascript Developer | 167 |San Francisco | 168 |39 | 169 |2009/09/15 | 170 |$205,500 | 171 |
| Sonya Frost | 174 |Software Engineer | 175 |Edinburgh | 176 |23 | 177 |2008/12/13 | 178 |$103,600 | 179 |
| Jena Gaines | 182 |Office Manager | 183 |London | 184 |30 | 185 |2008/12/19 | 186 |$90,560 | 187 |
| Quinn Flynn | 190 |Support Lead | 191 |Edinburgh | 192 |22 | 193 |2013/03/03 | 194 |$342,000 | 195 |
| Charde Marshall | 198 |Regional Director | 199 |San Francisco | 200 |36 | 201 |2008/10/16 | 202 |$470,600 | 203 |
| Haley Kennedy | 206 |Senior Marketing Designer | 207 |London | 208 |43 | 209 |2012/12/18 | 210 |$313,500 | 211 |
| Tatyana Fitzpatrick | 214 |Regional Director | 215 |London | 216 |19 | 217 |2010/03/17 | 218 |$385,750 | 219 |
| Michael Silva | 222 |Marketing Designer | 223 |London | 224 |66 | 225 |2012/11/27 | 226 |$198,500 | 227 |
| Paul Byrd | 230 |Chief Financial Officer (CFO) | 231 |New York | 232 |64 | 233 |2010/06/09 | 234 |$725,000 | 235 |
| Gloria Little | 238 |Systems Administrator | 239 |New York | 240 |59 | 241 |2009/04/10 | 242 |$237,500 | 243 |
| Bradley Greer | 246 |Software Engineer | 247 |London | 248 |41 | 249 |2012/10/13 | 250 |$132,000 | 251 |
| Dai Rios | 254 |Personnel Lead | 255 |Edinburgh | 256 |35 | 257 |2012/09/26 | 258 |$217,500 | 259 |
| Jenette Caldwell | 262 |Development Lead | 263 |New York | 264 |30 | 265 |2011/09/03 | 266 |$345,000 | 267 |
| Yuri Berry | 270 |Chief Marketing Officer (CMO) | 271 |New York | 272 |40 | 273 |2009/06/25 | 274 |$675,000 | 275 |
| Caesar Vance | 278 |Pre-Sales Support | 279 |New York | 280 |21 | 281 |2011/12/12 | 282 |$106,450 | 283 |
| Doris Wilder | 286 |Sales Assistant | 287 |Sidney | 288 |23 | 289 |2010/09/20 | 290 |$85,600 | 291 |
| Angelica Ramos | 294 |Chief Executive Officer (CEO) | 295 |London | 296 |47 | 297 |2009/10/09 | 298 |$1,200,000 | 299 |
| Gavin Joyce | 302 |Developer | 303 |Edinburgh | 304 |42 | 305 |2010/12/22 | 306 |$92,575 | 307 |
| Jennifer Chang | 310 |Regional Director | 311 |Singapore | 312 |28 | 313 |2010/11/14 | 314 |$357,650 | 315 |
| Brenden Wagner | 318 |Software Engineer | 319 |San Francisco | 320 |28 | 321 |2011/06/07 | 322 |$206,850 | 323 |
| Fiona Green | 326 |Chief Operating Officer (COO) | 327 |San Francisco | 328 |48 | 329 |2010/03/11 | 330 |$850,000 | 331 |
| Shou Itou | 334 |Regional Marketing | 335 |Tokyo | 336 |20 | 337 |2011/08/14 | 338 |$163,000 | 339 |
| Michelle House | 342 |Integration Specialist | 343 |Sidney | 344 |37 | 345 |2011/06/02 | 346 |$95,400 | 347 |
| Suki Burks | 350 |Developer | 351 |London | 352 |53 | 353 |2009/10/22 | 354 |$114,500 | 355 |
| Prescott Bartlett | 358 |Technical Author | 359 |London | 360 |27 | 361 |2011/05/07 | 362 |$145,000 | 363 |
| Gavin Cortez | 366 |Team Leader | 367 |San Francisco | 368 |22 | 369 |2008/10/26 | 370 |$235,500 | 371 |
| Martena Mccray | 374 |Post-Sales support | 375 |Edinburgh | 376 |46 | 377 |2011/03/09 | 378 |$324,050 | 379 |
| Unity Butler | 382 |Marketing Designer | 383 |San Francisco | 384 |47 | 385 |2009/12/09 | 386 |$85,675 | 387 |
| Howard Hatfield | 390 |Office Manager | 391 |San Francisco | 392 |51 | 393 |2008/12/16 | 394 |$164,500 | 395 |
| Hope Fuentes | 398 |Secretary | 399 |San Francisco | 400 |41 | 401 |2010/02/12 | 402 |$109,850 | 403 |
| Vivian Harrell | 406 |Financial Controller | 407 |San Francisco | 408 |62 | 409 |2009/02/14 | 410 |$452,500 | 411 |
| Timothy Mooney | 414 |Office Manager | 415 |London | 416 |37 | 417 |2008/12/11 | 418 |$136,200 | 419 |
| Jackson Bradshaw | 422 |Director | 423 |New York | 424 |65 | 425 |2008/09/26 | 426 |$645,750 | 427 |
| Olivia Liang | 430 |Support Engineer | 431 |Singapore | 432 |64 | 433 |2011/02/03 | 434 |$234,500 | 435 |
| Bruno Nash | 438 |Software Engineer | 439 |London | 440 |38 | 441 |2011/05/03 | 442 |$163,500 | 443 |
| Sakura Yamamoto | 446 |Support Engineer | 447 |Tokyo | 448 |37 | 449 |2009/08/19 | 450 |$139,575 | 451 |
| Thor Walton | 454 |Developer | 455 |New York | 456 |61 | 457 |2013/08/11 | 458 |$98,540 | 459 |
| Finn Camacho | 462 |Support Engineer | 463 |San Francisco | 464 |47 | 465 |2009/07/07 | 466 |$87,500 | 467 |
| Serge Baldwin | 470 |Data Coordinator | 471 |Singapore | 472 |64 | 473 |2012/04/09 | 474 |$138,575 | 475 |
| Zenaida Frank | 478 |Software Engineer | 479 |New York | 480 |63 | 481 |2010/01/04 | 482 |$125,250 | 483 |
| Zorita Serrano | 486 |Software Engineer | 487 |San Francisco | 488 |56 | 489 |2012/06/01 | 490 |$115,000 | 491 |
| Jennifer Acosta | 494 |Junior Javascript Developer | 495 |Edinburgh | 496 |43 | 497 |2013/02/01 | 498 |$75,650 | 499 |
| Cara Stevens | 502 |Sales Assistant | 503 |New York | 504 |46 | 505 |2011/12/06 | 506 |$145,600 | 507 |
| Hermione Butler | 510 |Regional Director | 511 |London | 512 |47 | 513 |2011/03/21 | 514 |$356,250 | 515 |
| Lael Greer | 518 |Systems Administrator | 519 |London | 520 |21 | 521 |2009/02/27 | 522 |$103,500 | 523 |
| Jonas Alexander | 526 |Developer | 527 |San Francisco | 528 |30 | 529 |2010/07/14 | 530 |$86,500 | 531 |
| Shad Decker | 534 |Regional Director | 535 |Edinburgh | 536 |51 | 537 |2008/11/13 | 538 |$183,000 | 539 |
| Michael Bruce | 542 |Javascript Developer | 543 |Singapore | 544 |29 | 545 |2011/06/27 | 546 |$183,000 | 547 |
| Donna Snider | 550 |Customer Support | 551 |New York | 552 |27 | 553 |2011/01/25 | 554 |$112,000 | 555 |