├── Backend ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── CarController.php │ │ │ ├── Controller.php │ │ │ ├── RentController.php │ │ │ └── UserController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ ├── Car.php │ │ ├── Rent.php │ │ └── User.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2023_02_06_172423_create_cars_table.php │ │ └── 2023_02_06_172523_create_rentals_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── vite.config.js ├── Database └── car_rental.sql ├── Frontend ├── .gitignore ├── .vscode │ └── settings.json ├── package-lock.json ├── package.json ├── public │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap │ │ │ │ ├── _media.css │ │ │ │ ├── mixins │ │ │ │ │ ├── _border-radius.css │ │ │ │ │ ├── _resize.css │ │ │ │ │ ├── _screen-reader.css │ │ │ │ │ ├── _transition.css │ │ │ │ │ └── _visibility.css │ │ │ │ └── utilities │ │ │ │ │ └── _stretched-link.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── cars_page.png │ │ │ ├── dashboard_cars.png │ │ │ ├── dashboard_rents.png │ │ │ ├── dashboard_users.png │ │ │ ├── ford.webp │ │ │ ├── ford2.webp │ │ │ ├── home.png │ │ │ ├── home_page.png │ │ │ ├── login_page.png │ │ │ ├── profile_page.png │ │ │ ├── rent_page.png │ │ │ └── signup_page.png │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ ├── main.js │ │ │ └── popper.js │ ├── image.jpeg │ ├── images │ │ ├── appstore.png │ │ ├── back1.webp │ │ ├── back2.webp │ │ ├── back3.webp │ │ ├── back4.webp │ │ ├── back5.webp │ │ ├── back6.webp │ │ ├── front1.webp │ │ ├── front2.webp │ │ ├── front3.webp │ │ ├── front4.webp │ │ ├── front5.webp │ │ ├── front6.webp │ │ └── playstore.png │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── App.test.js │ ├── AuthContext.js │ ├── SearchContext.js │ ├── components │ ├── dashboard │ │ ├── create-drawer.js │ │ ├── edit-drawer.js │ │ ├── nav-item.js │ │ └── sidebar-content.js │ ├── footer.js │ ├── form │ │ ├── card.js │ │ ├── form-button.js │ │ ├── form-input.js │ │ ├── login-form.js │ │ ├── signup-form.js │ │ └── sub-card.js │ ├── home │ │ ├── client-speak.js │ │ ├── featured-vehicles.js │ │ ├── home-page-button.js │ │ ├── home-page-image.js │ │ ├── home-page-text.js │ │ ├── home-sidebar-content.js │ │ └── why-choose-us.js │ ├── navbar │ │ ├── Navbar.js │ │ ├── NavbarLinks.js │ │ ├── avatar-menu.js │ │ └── login-buttons.js │ ├── paragraph.js │ ├── search.js │ ├── toast-alert.js │ └── ui │ │ ├── car-card.js │ │ ├── loading-spinner.js │ │ └── profile-drawer.js │ ├── fonts │ ├── Cairo-Regular.ttf │ ├── Parisienne-Regular.ttf │ ├── Poppins-Black.ttf │ ├── Poppins-BlackItalic.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-MediumItalic.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ └── fonts.css │ ├── i18n.js │ ├── index.js │ ├── locales │ ├── en.json │ └── fr.json │ ├── pages │ ├── BookCarsPage.js │ ├── DashboardPage.js │ ├── HomePage.js │ ├── LoginPage.js │ ├── Page404.js │ ├── ProfilePage.js │ ├── RentPage.js │ └── SignUpPage.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── useAuthentication.js └── README.md /Backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/.editorconfig -------------------------------------------------------------------------------- /Backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/.env.example -------------------------------------------------------------------------------- /Backend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/.gitattributes -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/README.md -------------------------------------------------------------------------------- /Backend/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Console/Kernel.php -------------------------------------------------------------------------------- /Backend/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Backend/app/Http/Controllers/CarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Controllers/CarController.php -------------------------------------------------------------------------------- /Backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Backend/app/Http/Controllers/RentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Controllers/RentController.php -------------------------------------------------------------------------------- /Backend/app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /Backend/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Kernel.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /Backend/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /Backend/app/Models/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Models/Car.php -------------------------------------------------------------------------------- /Backend/app/Models/Rent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Models/Rent.php -------------------------------------------------------------------------------- /Backend/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Models/User.php -------------------------------------------------------------------------------- /Backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Backend/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /Backend/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /Backend/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /Backend/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Backend/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/artisan -------------------------------------------------------------------------------- /Backend/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/bootstrap/app.php -------------------------------------------------------------------------------- /Backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/composer.json -------------------------------------------------------------------------------- /Backend/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/composer.lock -------------------------------------------------------------------------------- /Backend/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/app.php -------------------------------------------------------------------------------- /Backend/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/auth.php -------------------------------------------------------------------------------- /Backend/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/broadcasting.php -------------------------------------------------------------------------------- /Backend/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/cache.php -------------------------------------------------------------------------------- /Backend/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/cors.php -------------------------------------------------------------------------------- /Backend/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/database.php -------------------------------------------------------------------------------- /Backend/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/filesystems.php -------------------------------------------------------------------------------- /Backend/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/hashing.php -------------------------------------------------------------------------------- /Backend/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/logging.php -------------------------------------------------------------------------------- /Backend/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/mail.php -------------------------------------------------------------------------------- /Backend/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/queue.php -------------------------------------------------------------------------------- /Backend/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/sanctum.php -------------------------------------------------------------------------------- /Backend/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/services.php -------------------------------------------------------------------------------- /Backend/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/session.php -------------------------------------------------------------------------------- /Backend/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/config/view.php -------------------------------------------------------------------------------- /Backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /Backend/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Backend/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /Backend/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /Backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /Backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /Backend/database/migrations/2023_02_06_172423_create_cars_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2023_02_06_172423_create_cars_table.php -------------------------------------------------------------------------------- /Backend/database/migrations/2023_02_06_172523_create_rentals_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/migrations/2023_02_06_172523_create_rentals_table.php -------------------------------------------------------------------------------- /Backend/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /Backend/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/lang/en/auth.php -------------------------------------------------------------------------------- /Backend/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/lang/en/pagination.php -------------------------------------------------------------------------------- /Backend/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/lang/en/passwords.php -------------------------------------------------------------------------------- /Backend/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/lang/en/validation.php -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/package.json -------------------------------------------------------------------------------- /Backend/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/phpunit.xml -------------------------------------------------------------------------------- /Backend/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/public/.htaccess -------------------------------------------------------------------------------- /Backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/public/index.php -------------------------------------------------------------------------------- /Backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Backend/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /Backend/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/resources/js/bootstrap.js -------------------------------------------------------------------------------- /Backend/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /Backend/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/routes/api.php -------------------------------------------------------------------------------- /Backend/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/routes/channels.php -------------------------------------------------------------------------------- /Backend/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/routes/console.php -------------------------------------------------------------------------------- /Backend/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/routes/web.php -------------------------------------------------------------------------------- /Backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/storage/framework/.gitignore -------------------------------------------------------------------------------- /Backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Backend/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Backend/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Backend/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/tests/TestCase.php -------------------------------------------------------------------------------- /Backend/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Backend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Backend/vite.config.js -------------------------------------------------------------------------------- /Database/car_rental.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Database/car_rental.sql -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/.vscode/settings.json -------------------------------------------------------------------------------- /Frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/package-lock.json -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/_media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/css/bootstrap/_media.css -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/mixins/_border-radius.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/mixins/_resize.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/mixins/_screen-reader.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/mixins/_transition.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/mixins/_visibility.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/assets/css/bootstrap/utilities/_stretched-link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/css/bootstrap/utilities/_stretched-link.css -------------------------------------------------------------------------------- /Frontend/public/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/css/style.css -------------------------------------------------------------------------------- /Frontend/public/assets/images/cars_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/cars_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/dashboard_cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/dashboard_cars.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/dashboard_rents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/dashboard_rents.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/dashboard_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/dashboard_users.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/ford.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/ford.webp -------------------------------------------------------------------------------- /Frontend/public/assets/images/ford2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/ford2.webp -------------------------------------------------------------------------------- /Frontend/public/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/home.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/home_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/login_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/profile_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/profile_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/rent_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/rent_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/images/signup_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/images/signup_page.png -------------------------------------------------------------------------------- /Frontend/public/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /Frontend/public/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/js/jquery.min.js -------------------------------------------------------------------------------- /Frontend/public/assets/js/main.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | "use strict"; 4 | 5 | 6 | })(jQuery); 7 | -------------------------------------------------------------------------------- /Frontend/public/assets/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/assets/js/popper.js -------------------------------------------------------------------------------- /Frontend/public/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/image.jpeg -------------------------------------------------------------------------------- /Frontend/public/images/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/appstore.png -------------------------------------------------------------------------------- /Frontend/public/images/back1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back1.webp -------------------------------------------------------------------------------- /Frontend/public/images/back2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back2.webp -------------------------------------------------------------------------------- /Frontend/public/images/back3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back3.webp -------------------------------------------------------------------------------- /Frontend/public/images/back4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back4.webp -------------------------------------------------------------------------------- /Frontend/public/images/back5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back5.webp -------------------------------------------------------------------------------- /Frontend/public/images/back6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/back6.webp -------------------------------------------------------------------------------- /Frontend/public/images/front1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front1.webp -------------------------------------------------------------------------------- /Frontend/public/images/front2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front2.webp -------------------------------------------------------------------------------- /Frontend/public/images/front3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front3.webp -------------------------------------------------------------------------------- /Frontend/public/images/front4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front4.webp -------------------------------------------------------------------------------- /Frontend/public/images/front5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front5.webp -------------------------------------------------------------------------------- /Frontend/public/images/front6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/front6.webp -------------------------------------------------------------------------------- /Frontend/public/images/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/images/playstore.png -------------------------------------------------------------------------------- /Frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/index.html -------------------------------------------------------------------------------- /Frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/manifest.json -------------------------------------------------------------------------------- /Frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/public/robots.txt -------------------------------------------------------------------------------- /Frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/App.js -------------------------------------------------------------------------------- /Frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/App.test.js -------------------------------------------------------------------------------- /Frontend/src/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/AuthContext.js -------------------------------------------------------------------------------- /Frontend/src/SearchContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/SearchContext.js -------------------------------------------------------------------------------- /Frontend/src/components/dashboard/create-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/dashboard/create-drawer.js -------------------------------------------------------------------------------- /Frontend/src/components/dashboard/edit-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/dashboard/edit-drawer.js -------------------------------------------------------------------------------- /Frontend/src/components/dashboard/nav-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/dashboard/nav-item.js -------------------------------------------------------------------------------- /Frontend/src/components/dashboard/sidebar-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/dashboard/sidebar-content.js -------------------------------------------------------------------------------- /Frontend/src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/footer.js -------------------------------------------------------------------------------- /Frontend/src/components/form/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/card.js -------------------------------------------------------------------------------- /Frontend/src/components/form/form-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/form-button.js -------------------------------------------------------------------------------- /Frontend/src/components/form/form-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/form-input.js -------------------------------------------------------------------------------- /Frontend/src/components/form/login-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/login-form.js -------------------------------------------------------------------------------- /Frontend/src/components/form/signup-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/signup-form.js -------------------------------------------------------------------------------- /Frontend/src/components/form/sub-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/form/sub-card.js -------------------------------------------------------------------------------- /Frontend/src/components/home/client-speak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/client-speak.js -------------------------------------------------------------------------------- /Frontend/src/components/home/featured-vehicles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/featured-vehicles.js -------------------------------------------------------------------------------- /Frontend/src/components/home/home-page-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/home-page-button.js -------------------------------------------------------------------------------- /Frontend/src/components/home/home-page-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/home-page-image.js -------------------------------------------------------------------------------- /Frontend/src/components/home/home-page-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/home-page-text.js -------------------------------------------------------------------------------- /Frontend/src/components/home/home-sidebar-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/home-sidebar-content.js -------------------------------------------------------------------------------- /Frontend/src/components/home/why-choose-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/home/why-choose-us.js -------------------------------------------------------------------------------- /Frontend/src/components/navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/navbar/Navbar.js -------------------------------------------------------------------------------- /Frontend/src/components/navbar/NavbarLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/navbar/NavbarLinks.js -------------------------------------------------------------------------------- /Frontend/src/components/navbar/avatar-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/navbar/avatar-menu.js -------------------------------------------------------------------------------- /Frontend/src/components/navbar/login-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/navbar/login-buttons.js -------------------------------------------------------------------------------- /Frontend/src/components/paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/paragraph.js -------------------------------------------------------------------------------- /Frontend/src/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/search.js -------------------------------------------------------------------------------- /Frontend/src/components/toast-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/toast-alert.js -------------------------------------------------------------------------------- /Frontend/src/components/ui/car-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/ui/car-card.js -------------------------------------------------------------------------------- /Frontend/src/components/ui/loading-spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/ui/loading-spinner.js -------------------------------------------------------------------------------- /Frontend/src/components/ui/profile-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/components/ui/profile-drawer.js -------------------------------------------------------------------------------- /Frontend/src/fonts/Cairo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Cairo-Regular.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Parisienne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Parisienne-Regular.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Frontend/src/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/fonts/fonts.css -------------------------------------------------------------------------------- /Frontend/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/i18n.js -------------------------------------------------------------------------------- /Frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/index.js -------------------------------------------------------------------------------- /Frontend/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/locales/en.json -------------------------------------------------------------------------------- /Frontend/src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/locales/fr.json -------------------------------------------------------------------------------- /Frontend/src/pages/BookCarsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/BookCarsPage.js -------------------------------------------------------------------------------- /Frontend/src/pages/DashboardPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/DashboardPage.js -------------------------------------------------------------------------------- /Frontend/src/pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/HomePage.js -------------------------------------------------------------------------------- /Frontend/src/pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/LoginPage.js -------------------------------------------------------------------------------- /Frontend/src/pages/Page404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/Page404.js -------------------------------------------------------------------------------- /Frontend/src/pages/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/ProfilePage.js -------------------------------------------------------------------------------- /Frontend/src/pages/RentPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/RentPage.js -------------------------------------------------------------------------------- /Frontend/src/pages/SignUpPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/pages/SignUpPage.js -------------------------------------------------------------------------------- /Frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /Frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/setupTests.js -------------------------------------------------------------------------------- /Frontend/src/useAuthentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/Frontend/src/useAuthentication.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdellatif404/Car-Rental-Website/HEAD/README.md --------------------------------------------------------------------------------