Directory structure:
└── abdullahthewebbee-seminar_library_management_system_laravel-master/
├── README.md
├── artisan
├── composer.json
├── package.json
├── phpunit.xml
├── server.php
├── webpack.mix.js
├── .editorconfig
├── .env.example
├── .styleci.yml
├── app/
│ ├── User.php
│ ├── Console/
│ │ └── Kernel.php
│ ├── Exceptions/
│ │ └── Handler.php
│ ├── Http/
│ │ ├── Kernel.php
│ │ ├── Controllers/
│ │ │ ├── AdminAuthController.php
│ │ │ ├── BookManageController.php
│ │ │ ├── Controller.php
│ │ │ ├── StudentAuthController.php
│ │ │ └── StudentManageController.php
│ │ └── Middleware/
│ │ ├── Authenticate.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
│ ├── Mail/
│ │ ├── ApproveMail.php
│ │ ├── BookOrderMail.php
│ │ ├── BookReceiveMail.php
│ │ ├── ForgetPassEmail.php
│ │ ├── RejectMail.php
│ │ ├── RemoveStudentMail.php
│ │ └── VerifyEmail.php
│ └── Providers/
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── bootstrap/
│ └── app.php
├── config/
│ ├── app.php
│ ├── auth.php
│ ├── broadcasting.php
│ ├── cache.php
│ ├── cors.php
│ ├── database.php
│ ├── filesystems.php
│ ├── hashing.php
│ ├── logging.php
│ ├── mail.php
│ ├── queue.php
│ ├── services.php
│ ├── session.php
│ └── view.php
├── database/
│ ├── factories/
│ │ └── UserFactory.php
│ ├── migrations/
│ │ ├── 2021_01_06_143407_create_students_table.php
│ │ ├── 2021_01_06_143515_create_admins_table.php
│ │ ├── 2021_01_06_143606_create_records_table.php
│ │ ├── 2021_01_06_143700_create_books_table.php
│ │ └── 2021_01_06_144034_create_shelfs_table.php
│ └── seeds/
│ └── DatabaseSeeder.php
├── public/
│ ├── index.php
│ ├── robots.txt
│ ├── web.config
│ ├── .htaccess
│ ├── css/
│ │ ├── style.css
│ │ ├── style2.css
│ │ ├── style3.css
│ │ ├── style4.css
│ │ ├── style5.css
│ │ └── style7.css
│ ├── images/
│ │ ├── favicon.html
│ │ ├── assets_landing page/
│ │ │ └── Bg.html
│ │ ├── faces/
│ │ │ └── face2.html
│ │ ├── file-icons/
│ │ │ ├── 128/
│ │ │ │ └── 001-interface-1.html
│ │ │ └── 64/
│ │ │ └── 001-interface-1.html
│ │ └── lightbox/
│ │ └── play-button.html
│ └── js/
│ ├── ace.js
│ ├── alerts.js
│ ├── avgrund.js
│ ├── bootstrap-table.js
│ ├── bt-maxLength.js
│ ├── bt-multiselect-splitter.js
│ ├── c3.js
│ ├── calendar.js
│ ├── chart.js
│ ├── chartist.js
│ ├── circle-progress.js
│ ├── clipboard.js
│ ├── codemirror.js
│ ├── context-menu.js
│ ├── cropper.js
│ ├── dashboard_1.js
│ ├── data-table.js
│ ├── db.js
│ ├── desktop-notification.js
│ ├── dragula.js
│ ├── dropify.js
│ ├── dropzone.js
│ ├── editorDemo.js
│ ├── float-chart.js
│ ├── form-addons.js
│ ├── form-repeater.js
│ ├── form-validation.js
│ ├── formpickers.js
│ ├── google-charts.js
│ ├── hoverable-collapse.js
│ ├── iCheck.js
│ ├── ion-rangeSlider.js
│ ├── jq.tablesort.js
│ ├── jquery-file-upload.js
│ ├── js-grid.js
│ ├── just-gage.js
│ ├── light-gallery.js
│ ├── listify.js
│ ├── mail.js
│ ├── mapeal.js
│ ├── mapeal_example_3.js
│ ├── maps.js
│ ├── misc.js
│ ├── modal-demo.js
│ ├── morris.js
│ ├── no-ui-slider.js
│ ├── off-canvas.js
│ ├── owl-carousel.js
│ ├── progress-bar.js
│ ├── rickshaw.js
│ ├── settings.js
│ ├── sparkline.js
│ ├── tablesorter.js
│ ├── tabs.js
│ ├── tight-grid.js
│ ├── toastDemo.js
│ ├── todolist.js
│ ├── tour.js
│ └── typeahead.js
├── resources/
│ ├── js/
│ │ ├── app.js
│ │ └── bootstrap.js
│ ├── lang/
│ │ └── en/
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
│ ├── sass/
│ │ └── app.scss
│ └── views/
│ ├── admin/
│ │ ├── add_book.blade.php
│ │ ├── add_order.blade.php
│ │ ├── add_shelf.blade.php
│ │ ├── approve_email.blade.php
│ │ ├── book_details.blade.php
│ │ ├── book_order_email.blade.php
│ │ ├── book_order_show.blade.php
│ │ ├── book_received.blade.php
│ │ ├── book_received_Email.blade.php
│ │ ├── change_auth_password.blade.php
│ │ ├── change_password.blade.php
│ │ ├── dashboard.blade.php
│ │ ├── database_book.blade.php
│ │ ├── edit_books.blade.php
│ │ ├── edit_info.blade.php
│ │ ├── edit_shelf.blade.php
│ │ ├── electronics_book.blade.php
│ │ ├── forget_password.blade.php
│ │ ├── networking_book.blade.php
│ │ ├── notification.blade.php
│ │ ├── programming_book.blade.php
│ │ ├── reject_email.blade.php
│ │ ├── remove_books.blade.php
│ │ ├── remove_shelf.blade.php
│ │ ├── remove_student.blade.php
│ │ ├── remove_student_email.blade.php
│ │ ├── shelf_details.blade.php
│ │ ├── shelf_list.blade.php
│ │ ├── sign_in.blade.php
│ │ ├── software_book.blade.php
│ │ ├── student_details.blade.php
│ │ ├── student_info.blade.php
│ │ ├── student_request.blade.php
│ │ ├── update_books.blade.php
│ │ └── update_shelf.blade.php
│ ├── layout/
│ │ ├── admin_layout.blade.php
│ │ └── student_layout.blade.php
│ └── student/
│ ├── change_password.blade.php
│ ├── change_password_page.blade.php
│ ├── dashboard.blade.php
│ ├── database_book.blade.php
│ ├── edit_info.blade.php
│ ├── electronics_book.blade.php
│ ├── forget_password.blade.php
│ ├── my_collection.blade.php
│ ├── my_submission.blade.php
│ ├── networking_book.blade.php
│ ├── notification.blade.php
│ ├── programming_book.blade.php
│ ├── RecoveryPassword_By_Email.blade.php
│ ├── shelf_details.blade.php
│ ├── shelf_list.blade.php
│ ├── sign_up_page.blade.php
│ ├── software_book.blade.php
│ ├── student_sign_in.blade.php
│ ├── verify_email.blade.php
│ └── Verify_Email_By_Mail.blade.php
├── routes/
│ ├── api.php
│ ├── channels.php
│ ├── console.php
│ └── web.php
└── tests/
├── CreatesApplication.php
├── TestCase.php
├── Feature/
│ └── ExampleTest.php
└── Unit/
└── ExampleTest.php