Skip to content

Commit 38d35d1

Browse files
committed
update readme
1 parent c08115c commit 38d35d1

File tree

2 files changed

+61
-17
lines changed

2 files changed

+61
-17
lines changed

LICENSE

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
MIT License
22

3-
Copyright (c) 2024 Er Amit Gupta
3+
Copyright (c) 2024 eramitgupta
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to anyone obtaining a copy
6+
of this software and its associated documentation files (the "laravel-setup-layout"), to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell copies
8+
of the Software. People using the software are allowed to do so under the following conditions:
119

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
10+
1. The original copyright notice and this permission notice must be included in all copies
11+
or substantial portions of the Software.
1412

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
13+
2. If you use this code to create new software, it should not be an exact or substantially similar copy.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED. THE AUTHORS OR COPYRIGHT HOLDERS ARE NOT LIABLE FOR ANY CLAIM, DAMAGES,
17+
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE,
18+
ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF THE SOFTWARE.

README.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,48 @@
1-
# laravel-setup-layout
1+
2+
## Layout Setup for Laravel Applications 🔥.
3+
### A versatile and easy-to-use package for setting up layouts in Laravel applications.
4+
5+
## Features
6+
- Simplifies the process of creating and managing layouts.
7+
- Customizable layout configurations to suit your application's needs.
8+
- Enhances the structure and organization of your Laravel projects.
9+
10+
## Installation
11+
Install the package via Composer:
12+
13+
```bash
14+
composer require erag/laravel-setup-layout
15+
```
16+
17+
18+
### Step 1: Service Provider
19+
Add the following line to the providers array in your `config/app.php` file:
20+
21+
```bash
22+
23+
'providers' => [
24+
// Other service providers...
25+
LaravelSetupLayout\LaravelSetupLayoutServiceProvider::class,
26+
],
27+
28+
```
29+
30+
31+
### Step 2: Publishing Configuration
32+
To publish the configuration file, run the following Artisan command:
33+
34+
This command will copy the package's configuration file to your Laravel application, allowing you to customize layout settings according to your needs.
35+
36+
```bash
37+
php artisan vendor:publish --tag=LaravelSetupLayout --force
38+
```
39+
40+
41+
42+
43+
The MIT License (MIT). Please see License File for more information.
44+
45+
> GitHub [@eramitgupta](https://github.com/eramitgupta)  · 
46+
> Linkedin [@eramitgupta](https://www.linkedin.com/in/eramitgupta/) · 
47+
> Donote [@eramitgupta](https://paypal.me/teamdevgeek/)
48+

0 commit comments

Comments
 (0)