Download the PHP package thiagoprz/crud-tools without Composer

On this page you can find all versions of the php package thiagoprz/crud-tools. 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 crud-tools

Laravel Crud Tools

Easy to use Laravel CRUD package with Controller, Model and Log system built in.

Documentation Status Dev Master

Table of contents

Installation

Install through composer using: composer install thiagoprz/crud-tools

If you don't have package auto discovery enabled add CrudToolsServiceProvider to your config/app.php:

Publish Crud Tools service provider to allow stubs customization:

php artisan vendor:publish --provider="Thiagoprz\CrudTools\CrudToolsServiceProvider"

Usage

CRUD Model:

For models you just need to add the trait ModelCrud and after that create a static property declaring model's validations (based on the create, update and/or delete scenarios), default order, filtering rules, upload file rules, define resources, and with / countable relationships.

You can create a $searchable property that will hold fields allowed to be searched on the static method search() - very useful with the ControllerCrud.

Types available: int, string, date, datetime and decimal.

You can use input filters using "_from" and "_to" suffix on date, datetime and decimal fields:

Type Description Suffixes: _from _to
int Integer fields, can be used to search a range of records by using "_from" and "_to" suffixes Yes
decimal Float, Double, Real or any decimal type of field. "_from" and "_to" suffixes allowed Yes
string Any string field to be search using "WHERE field LIKE '%SEARCH%'" No
string Any string field to be search using "WHERE field = 'SEARCH'" No
datetime Datetime and Timestamp fields Yes
date Date fields Yes

In addition to use standard search based on type of fields you can add your on custom methods to customize search of specific fields. Create a method called "searchField" where Field is the name of the field with only first letter upper case.

Example:

You can define the fields that will be used as default sorting of your model on the index action. Also, you can pass an "order" input used by the search method allowing the override the default order defined by this variable.

You can create a fileUploads method to define which and where your uploadable fields will store the files:

CRUD Controller:

A CRUD Controller can be achieve by just creating a standard controller class using ControllerCrud trait.

The next step is to create a folder inside resources/views with the desired namespace or on root folder if the controller won't be using a specific namespace (admin on the example).

Views directory structure used by Controller CRUD based on the above example:

Folder:

views/admin/user

Files:

create.blade.php

edit.blade.php

Available vars: $model (the model being updated)

form.blade.php

Available vars: $model (the model being updated - only on edit action)

index.blade.php

Available vars: $items (the pagination object containing a filtered collection of the model)

show.blade.php

Available vars: $model (the model being displayed)

CRUD Generators

Model Generator:

To easily create a model with all Crud Tools enabled use:

NAMESPACE: Model's namespace Model: Name of the model

Controller Generator:

You can create a standard Controller to work with a model by using the following command:

NAMESPACE1: Controller's namespace

NAMEController: is the name of the controller

NAMESPACE2: Model's namespace

Model: Name of the model

Enabling Logs

To enable automatic logs on your models you need to publish Spatie Activity Logger migrations:

php artisan vendor:publish --provider="Spatie\Activitylog\ActivitylogServiceProvider" --tag="migrations"

Run migrations:

php artisan migrate

For more information you can read Spatie Activity Log Documentations.

Customizing Routes and Resource Paths

If you need to have different structure for resource directories besides the default resources/{namespace/}modelname/ you can implement the method getViewPath on your controller and define it up manually:

This method returns the path for routes and views, so you can customize the url and path for resources separatelly just using $forRedirect true for routes and false for resource directories.

Contributing

Check the contributing file to have a better understanding on how to contribute to the package.

Support

Issues

Please feel free to indicate any issues on this packages, it will help a lot. I will address it as soon as possible.

Supported By Jetbrains

This project is being developed with the help of Jetbrains through its project to support Open Source software.

Buy me a Coffee

ko-fi buy-coffee


All versions of crud-tools with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0 || ^8.1 || ^8.2
spatie/laravel-activitylog Version ^3.1
laravel/framework Version 8.*||9.*||10.*
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 thiagoprz/crud-tools contains the following files

Loading the files please wait ....