Welcome to Lamssa Fashion - your go-to Laravel-powered online store for the latest women's clothing. Visit us at lamssafashion.com.
Lamssa Fashion is an online store dedicated to bringing the latest trends in women's fashion directly to your fingertips. Our platform is built on Laravel, a robust PHP framework, ensuring a seamless and responsive shopping experience. Whether you're looking for chic dresses, comfortable loungewear, or stylish accessories, Lamssa Fashion has it all.
- User-Friendly Interface: Easy navigation and intuitive design.
- Product Search and Filters: Quickly find the products you love.
- Secure Checkout: Safe and secure payment processing.
- Responsive Design: Optimized for all devices.
- Admin Dashboard: Manage products, orders, and users with ease.
- Wishlist: Save your favorite items for later.
- Order Tracking: Keep track of your orders in real-time.
Check out our live demo at lamssafashion.com.
- Backend: Laravel
- Frontend: Blade templates, Bootstrap, CSS, JavaScript
- Database: MySQL
- Version Control: Git
- Payment Gateway: Stripe/PayPal
- Admin Panel: Filament PHP
Follow these steps to clone and set up Lamssa Fashion locally.
- PHP >= 8.x
- Composer
- MySQL
- Node.js & npm
git clone https://github.com/yourusername/lamssa-fashion.git
cd lamssa-fashion
composer install
npm install
- Copy the
.env.example
file to.env
:
cp .env.example .env
- Generate the application key:
php artisan key:generate
- Update the
.env
file with your database and other configurations:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=lamssa_fashion
DB_USERNAME=your_username
DB_PASSWORD=your_password
# Add other necessary configurations
php artisan migrate --seed
npm run dev
php artisan serve
Visit http://localhost:8000
in your browser to see the application.
- Admin Panel: Accessible at
http://localhost:8000/admin
(default login credentials are in the seeder file). Powered by Filament PHP. - User Registration: Users can sign up and start shopping immediately.
- Product Management: Admins can add, edit, and delete products via the admin panel.
We welcome contributions from the community! To contribute:
- Fork the repository.
- Create a new branch:
git checkout -b feature-branch-name
. - Make and commit your changes:
git commit -m 'Add new feature'
. - Push to the branch:
git push origin feature-branch-name
. - Open a pull request.
Please read our SECURITY.md for more details.
This project is licensed under the MIT License - see the LICENSE file for details.
For any inquiries, please get in touch with us at support@freewsad.com.
Thank you for choosing Lamssa Fashion!
This README.md
file includes a detailed description of your project, installation instructions, usage details, and additional sections for contributing, licensing, and contact information. It also highlights the use of Filament PHP for the admin panel.