> ## Documentation Index
> Fetch the complete documentation index at: https://axeldevelopment.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation Guide

<Steps>
  <Step title="Upload the Resource">
    Place the script folder into your server's `resources` directory.
  </Step>

  <Step title="Import Database">
    Run the provided **SQL file** in your database using phpMyAdmin, HeidiSQL, or a similar tool.
  </Step>

  <Step title="Configure ox_inventory">
    Open `ox_inventory/data/items.lua` and add the following item. This is required for the tablet and battery system to work properly:

    ```lua theme={null}
    ['tablet'] = {
        label = 'Crime Tablet',
        weight = 500,
        stack = false,
        close = true,
        client = {
            event = 'axel_crimetablet:openUI' 
        }
    },
    ```
  </Step>

  <Step title="Start the Script">
    Add the resource to your `server.cfg` file:

    ```cfg theme={null}
    ensure axel_crimetablet
    ```
  </Step>
</Steps>

<Tip>
  Make sure this script starts **after** core dependencies like `ox_lib`, `oxmysql`, and `ox_inventory`.
</Tip>
