Skip to content

Commit bd9ff6d

Browse files
committed
Update the latest logo with dark and light mode support.
1 parent a237f31 commit bd9ff6d

File tree

7 files changed

+75
-79
lines changed

7 files changed

+75
-79
lines changed

.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ export default defineConfig({
5757

5858
themeConfig: {
5959
logo: {
60-
light: '/images/logo-light.svg',
61-
dark: '/images/logo-dark.svg'
60+
light: '/images/logo-dark.svg',
61+
dark: '/images/logo-light.svg'
6262
},
6363

6464
siteTitle: false,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
"vitepress": "^1.6.3",
2424
"vue": "^3.5.13"
2525
}
26-
}
26+
}

src/master/advanced/chatter/actions/file.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,20 @@ The `FileAction` class extends `Filament\Actions\Action`, creating a custom Fila
55
## **Key Features of `FileAction`**
66

77
1. **File Uploading**
8-
98
- Supports multiple file uploads.
109
- Files are stored in the `chats-attachments` directory.
1110
- Users can preview, download, reorder, and delete files.
1211

1312
2. **File Type Restrictions**
14-
1513
- Accepts only specific file types such as images, PDFs, Word documents, Excel sheets, and plain text files.
1614
- Files are limited to a maximum size of **10 MB (10,240 KB).**
1715

1816
3. **Notifications**
19-
2017
- Success notifications when files are uploaded or deleted.
2118
- Warning notifications if there are no new files to upload.
2219
- Error notifications in case of failures.
2320

2421
4. **Database Integration**
25-
2622
- Uses an `attachments` relationship to fetch existing attachments.
2723
- Prevents duplicate file uploads by checking already uploaded files.
2824
- Deletes files both from the database and storage when removed.

src/master/getting-started/migrations.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,11 @@ class BlogServiceProvider extends PackageServiceProvider
104104
## **Understanding Migration Registration**
105105

106106
1. **`hasMigrations([...])`**
107-
108107
- This method registers the migration file inside the plugin.
109108
- The filename should match the migration file placed in `database/migrations/`.
110109
- Example: `'2025_01_06_072032_create_posts_table'`
111110

112111
2. **`runsMigrations()`**
113-
114112
- This method ensures that the registered migrations will run automatically when executing `php artisan migrate`.
115113

116114
When you install plugins all configured migrations, settings and other configuration will be runs else, you can run migrations manually

src/master/plugins/filament.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ To properly register resources, clusters, and pages, the following directory str
7373
## **Usage Guidelines**
7474

7575
- **Admin Panel (`Admin` directory):**
76-
7776
- If you want to display resources and clusters in the **admin panel**, create your Filament components inside the `Admin` directory.
7877

7978
- **Customer Panel (`Customer` directory):**

src/public/images/logo-dark.svg

Lines changed: 36 additions & 36 deletions
Loading

0 commit comments

Comments
 (0)