diff --git a/README.md b/README.md
new file mode 100644
index 0000000..61e89a6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,66 @@
+# Laravel Media Manager
+
+A Livewire v3-powered media manager for Laravel applications. It provides a Botble-like media library with uploads, tagging, folders, favorites, trash management, and basic image optimization features.
+
+## Requirements
+- PHP 8.2+
+- Laravel with Livewire 3 installed
+
+## Installation
+1. Install the package via Composer:
+ ```bash
+ composer require creativehabib/media-manager
+ ```
+2. Publish the configuration (and adjust disks, route prefix, middleware, or permissions as needed):
+ ```bash
+ php artisan vendor:publish --provider="Habib\\MediaManager\\MediaManagerServiceProvider" --tag=config
+ ```
+3. Run the migrations to create the media tables:
+ ```bash
+ php artisan migrate
+ ```
+
+## Configuration
+The published `config/mediamanager.php` file lets you control several behaviors:
+- **disks**: which filesystem disks can be managed (default: `public`, `s3`, `do_spaces`).
+- **default_disk**: disk used when none is specified.
+- **route_prefix**: base URL for the bundled routes (default: `admin/media`).
+- **middleware**: middleware stack protecting the routes (default: `['web', 'auth']`).
+- **permission**: optional Gate ability checked before allowing access (default: `manage_media`).
+- **per_page**: pagination size for the media listing.
+- **toast**: toast notification defaults (position, timeout, queue length).
+
+## Usage
+### Routes
+The service provider automatically registers routes under the configured prefix, guarded by the configured middleware and optional permission check. Visit `/admin/media` (or your configured prefix) to access the media manager page.
+
+### Livewire component
+Render the media manager anywhere in your app:
+```blade
+
+```
+
+### Modal include
+To open the manager inside a modal and let users pick media for form fields, include the packaged modal partial and trigger it via the provided JavaScript helpers:
+```blade
+@include('mediamanager::includes.media-modal')
+
+
+
+```
+The modal listens for `open-media-manager` and `close-media-manager` events and dispatches `media-insert` when users confirm selection.
+
+### View publishing
+If you need to customize the views, publish them:
+```bash
+php artisan vendor:publish --provider="Habib\\MediaManager\\MediaManagerServiceProvider" --tag=mediamanager-views
+# or publish everything under the mediamanager namespace
+php artisan vendor:publish --provider="Habib\\MediaManager\\MediaManagerServiceProvider" --tag=mediamanager-all
+```
+
+## Features
+- Upload files from local devices or by URL, storing them on the configured disks.
+- Organize files into folders, tag them, and search/filter by name, tag, MIME type, visibility, date range, or folder.
+- Mark items as favorites, manage trash, and view recent uploads.
+- Image uploads automatically record dimensions; cropping and optimization options are built in for image assets.
+- Optional Gate permission check to restrict access to authorized users.