sypspace / sypspace-starter-kit
Starter Kit for web application development powered by the Laravel framework.
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- bezhansalleh/filament-exceptions: ^2.1
- bezhansalleh/filament-shield: ^3.2
- filament/filament: ^3.2
- filament/spatie-laravel-media-library-plugin: ^3.2
- jeffgreco13/filament-breezy: ^2.3
- laravel/framework: ^11.0
- laravel/tinker: ^2.9
- shuvroroy/filament-spatie-laravel-backup: ^2.1
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pint: ^1.13
- laravel/sail: ^1.29
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.0
- phpunit/phpunit: ^10.5
- spatie/laravel-ignition: ^2.4
README
Introduction
Welcome to the Starter Kit, a robust foundation for building web applications powered by the Laravel framework. Whether you're a seasoned developer or just starting out, this kit provides you with the essential tools and structure to kickstart your project efficiently.
Features
-
Laravel Filament Integration: Built on top of Laravel Filament, a powerful admin panel framework for Laravel, enabling you to create beautiful and customizable administrative interfaces effortlessly.
-
User Management: User management system pre-configured, including user roles and permissions management, authentication, and authorization.
-
CRUD Operations: Simplifies CRUD (Create, Read, Update, Delete) operations for managing various resources within your application.
-
Database Management: Utilizes Laravel's Eloquent ORM for seamless database management, allowing you to define and interact with database entities effortlessly.
-
Customizable Templates: Includes customizable templates and components to accelerate frontend development, ensuring a responsive and user-friendly interface.
-
Authentication & Authorization: Secure authentication and authorization mechanisms integrated, providing granular control over user access and permissions. Supports two-factor authentication.
-
Customizable Themes: Customize and theme your application's interface with ease using Laravel Filament's theming capabilities.
Installation
- Clone the repository:
git clone <repository-url>
- Navigate into the project directory:
cd starter-kit
- Install dependencies using Composer:
composer install
- Copy the
.env.example
file to.env
and configure your environment variables:
cp .env.example .env
- Generate the application key:
php artisan key:generate
- Run migrations to create the necessary tables in the database:
php artisan migrate
- (Optional) Seed the database with sample data:
php artisan db:seed
- Serve the application:
php artisan serve
Usage
-
Development: Start the local development server with
php artisan serve
and access the application in your browser. -
Testing: Run tests using PHPUnit with
php artisan test
. -
Deployment: Deploy the application to your preferred hosting environment following Laravel's deployment best practices.
Contributing
Contributions are welcome! Please read the contributing guidelines before submitting a pull request.
License
This project is licensed under the GPL-3.0 License - see the LICENSE file for details.
Authors
- Sukmono Yogi yogi@sypspace.com
Acknowledgments
Special thanks to the Laravel community for their continuous support and contributions.
Feel free to customize and extend this starter kit to suit your project requirements. Happy coding! 🚀