Download the PHP package dkpankaj1/adminkit without Composer

On this page you can find all versions of the php package dkpankaj1/adminkit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package adminkit

AdminKit for Laravel

Overview

AdminKit for Laravel provides a seamless way to integrate a customizable admin interface into your Laravel application. The install:adminkit Artisan command allows you to choose between two themes (Kadso or Drezoc) and automatically copies controllers, middleware, requests, view components, models, support files, views, assets, migrations, language files, and routes to your project.

Requirements

Installation

Follow these steps to install and configure AdminKit in your Laravel project:

Step 1: Install via Composer

Run the following command to install the package:

Step 2: Register Service Provider

Add the AdminKit service provider to bootstrap/providers.php:

Step 3: Run the Installation Command

Execute the Artisan command to install AdminKit:

This command will:

  1. Prompt you to select a theme (Kadso or Drezoc).
  2. Copy the following core files to your project:
    • Controllers to app/Http/Controllers
    • Middleware to app/Http/Middleware
    • Requests to app/Http/Requests
    • View Components to app/View/Components
    • Models to app/Models
    • Support Files to app/Support
    • Views to resources/views
    • Migrations to database/migrations
    • Language Files to lang
    • Routes to routes/admin.php
  3. Copy theme-specific views and assets to resources/views and public/assets, respectively.
  4. Prompt for confirmation before overwriting existing files or directories.

Run the command with verbose output to debug issues:

Step 4: Run Migrations (Optional)

If migrations are included in the theme, run the following command to apply them:

Step 5: Register Middleware

Update bootstrap/app.php to include the admin middleware:

Step 6: Register Routes

Modify bootstrap/app.php to include the admin routes:

File Structure

After running the install:adminkit command, your project will include the following structure for the selected theme:

Configuration

Theme Selection

The install:adminkit command prompts you to choose between the Kadso or Drezoc theme. Each theme includes specific views and assets tailored to its design.

Overwrite Protection

If destination files or directories already exist, the command will prompt for confirmation before overwriting. To skip overwriting, answer "no" to the prompt, and the command will continue with the remaining files.

Language Files

Language files are copied to the lang directory (e.g., lang/en/messages.php). Ensure your application’s locale is set in config/app.php (e.g., 'locale' => 'en') to use the appropriate language.

Migrations

Migration files are copied to database/migrations. Ensure that migration files have unique timestamps or filenames to avoid conflicts. Verify this by checking the database/migrations directory after installation.

Notes

Troubleshooting

If you encounter issues during installation, try the following:

License

AdminKit for Laravel is open-source software licensed under the MIT License. You are free to use, modify, and distribute it as needed.

Support

For issues, questions, or contributions, please visit the GitHub repository or contact the maintainer.


All versions of adminkit with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2
laravel/framework Version ^11.0|^12.0
spatie/image Version ^3.8
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package dkpankaj1/adminkit contains the following files

Loading the files please wait ....