Skip to content

Commit

Permalink
edit Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tqt97 committed Oct 15, 2023
1 parent db6e66b commit c0e79a4
Showing 1 changed file with 60 additions and 57 deletions.
117 changes: 60 additions & 57 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,60 +7,63 @@
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
</p>

## About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).

Laravel is accessible, powerful, and provides tools required for large, robust applications.

## Learning Laravel

Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.

If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

## Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).

### Premium Partners

- **[Vehikl](https://vehikl.com/)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Cubet Techno Labs](https://cubettech.com)**
- **[Cyber-Duck](https://cyber-duck.co.uk)**
- **[Many](https://www.many.co.uk)**
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
- **[DevSquad](https://devsquad.com)**
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
- **[OP.GG](https://op.gg)**
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
- **[Lendio](https://lendio.com)**

## Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).

## Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).

## Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed.

## License

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
# Laravel CRM with filament project

## Step by step

1. **Install Laravel and Filament**

- Laravel Installation: ```create-project laravel/laravel laravel-crm-filament```
- Filament Installation
```
composer require filament/filament
php artisan filament:install --panels
php artisan make:filament-user
```
- Logging Into Filament
2. **Creating Lead Sources Resource**
- Create lead_sources DB structure: Model/Migration and a belongsTo relationship with customers
- Create Seeds with semi-real data without factories
- Create a Filament Resource for Lead sources
- Add a DeleteAction to the table with validation if that record is used
- Add lead source information to the Customer Resource table/form
- Divide the menu into two levels: introduce Settings parent menu item
3. **Creating Customers Resource**
- Create DB structure for Customers: Model/Migration
- Create Factories/Seeds for testing data
- Generate Filament Resource directly from the DB structure
- Hide the deleted_at column from the table
- Merge first_name and last_name into one table column
4. **Creating Tags for Customers**
- Create tags DB structure: Model/Migration and a belongsToMany relationship with customers
- Create Seeds with semi-real data without factories
- Create a Filament Resource for Tags
- Add a ColorPicker field to the form and a ColorColumn column to the table
- Add a DeleteAction to the table with validation if that record is used
- Add tags to the Customer form with Select::make()->multiple()
- Add tags to the Customer table in the same column of name using formatStateUsing() and rendering a separate Blade View
5. **Pipeline Stages Resource: Reorderable**
- Create pipeline_stages DB structure: Model/Migration and a hasMany relationship to customers
- Create Seeds with semi-real data without factories
- Create a Filament Resource for Pipeline Stages
- Auto-assign the new position to a new Pipeline Stage
- Make the table reorderable with the position field
- Add a Custom Action Set Default with confirmation
- Add a DeleteAction to the table with validation if that record is used
- Add pipeline stage information to the Customer Resource table/form
6. **Moving Customers through Pipeline Stages**
- Create a CustomerPipelineStage Model to save the history of the Customer's Pipeline Stage changes and any comments added.
- Add a custom Table Action to move customers to other pipeline stages.
- Add creating and updating action Observers to our Customer Model to save the history.
7. **Customers by Stage: Tabs with Numbers**
- Dynamically create tabs for each Pipeline Stage
- Create a new tab called All to show all Customers
- Add counters to each tab to show how many Customers are in each group
8. **SoftDeletes: Archive and Restore Customers**
- Add the Archived tab to the Customers table
- Add Delete button to the table
- Add the Restore button to the Archived tab
- Disable row click on the Archived tab
9. **Customer View Page with Infolist**
10. **Customer Documents: Upload/Download**
11. **Custom Fields for Customers**

0 comments on commit c0e79a4

Please sign in to comment.