Download the PHP package incraigulous/adminzone without Composer
On this page you can find all versions of the php package incraigulous/adminzone. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download incraigulous/adminzone
More information about incraigulous/adminzone
Files in incraigulous/adminzone
Package adminzone
Short Description Administration panel for Laravel.
License MIT
Informations about the package adminzone
AdminZone
A powerful admin generator for Laravel.
Getting started
publishing vendor resources
Available tags:
config
: publishes the config file to config/adminzone.php
assets
: publishes all assets including scss, js and views.
scss
: publishes scss to vendor/adminzone/scss
js
: publishes js to vendor/adminzone/js
views
: publishes views to views/vendor/adminzone
public
: publishes compiled assets to public/vendor/adminzone
You can publish as much or as as you like. I recommended that you publish as little as possible to ensure comparability with future updates. Minor release should not introduce breaking changes, but If you choose to override views you should consider locking adminzone to the current release to ensure compatibility.
Creating your first resource
- Create a folder at
app/resources
- Make a
app/resources/User.php
file that contains theExample Resource
code below. - Register your resource in
config.adminzone
by adding\App\Resources\User::class
to the menu array. - After you've created your resource, it will be available in the left sidebar of the admin. This is the minimum level of customization needed to add basic CRUD functionality for a model.
Resources
Example resource
Models
Any model managed by the Admin use use the Incraigulous\AdminZone\Models\Traits\Administratable
trait or extend Incraigulous\AdminZone\Models\Model
.
Fields
Fields are objects that can be added to forms to build up a form view and specify how submissions should be handled.
Relationships
Relationships user interfaces can easily be added through the use of relationship fields.
Note: You must add an order
int field to pivot tables to allow adminzone to control sort order.
Relationship Fieids
BelongsToField
The belongs to field adds a field to a form that handles a belongs to resource. It will generate a field that allows the user to select and edit the related resource.
BelongsToManyField
The belongs to many field adds a field to a form that handles a belongs to many resources. It will generate a field that allows the user to select and edit the related resource.
All versions of adminzone with dependencies
illuminate/support Version ^5.7
fzaninotto/faker Version ^1.8
jeffochoa/validator-factory Version ^1.0
bentools/querystring Version ^1.0
spatie/laravel-translatable Version ^3.1
incraigulous/objection Version 1.0.1
davejamesmiller/laravel-breadcrumbs Version 5.x
tightenco/ziggy Version ^0.6.9
nicolaslopezj/searchable Version ^1.10
spatie/laravel-blade-x Version ^2.1