Download the PHP package zofe/rapyd-admin without Composer

On this page you can find all versions of the php package zofe/rapyd-admin. 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 rapyd-admin

Rapyd Admin: Simplifying Laravel Development

Build Status Total Downloads Latest Stable Version

Installation

Create new laravel app then install rapyd-admin package.

(answer “y” to the question about writes "allow-plugins" to composer.json)

Then you can customize roles & permissions in app/Modules/Auth/permissions.php then run

Now you can login with a default admin user:


Rapyd Admin

Rapyd Admin enhances Laravel by offering essential admin features with modular approach:

Generators

Rapyd has some commands to generate models, components, modules (bundled components & views isolated in a folder) via artisan command line:

Models

generate a model (via command line)

Livewire components

will generate

Modules & Generators

example of out of the box module structure you can use after installing rapyd-admin.


Blade views and Components

Table

A Table is a "listing component" with these features:

you can generate a Table component with:

or and entire crud (Table/View/Edit) in a module named Blog with;

Generated & Customized view can be something like:

html <x-rpd::table title="Article List" :items="$items"

<x-slot name="filters">
  <x-rpd::input col="col-8" debounce="350" model="search"  placeholder="search..." />
  <x-rpd::select col="col-4" model="author_id" :options="$authors" placeholder="author..." addempty />
</x-slot>

<table class="table">
    <thead>
    <tr>
        <th>
            <x-rpd::sort model="id" label="id" />
        </th>
        <th>title</th>
        <th>author</th>
        <th>body</th>
    </tr>
    </thead>
    <tbody>
    @foreach ($items as $article)
    <tr>
        <td>
            <a href="{{ route('articles.view',$article->id) }}">{{ $article->id }}</a>
        </td>
        <td>{{ $article->title }}</td>
        <td>{{ $article->author->firstname }}</td>
        <td>{{ Str::limit($article->body,50) }}</td>
    </tr>
    @endforeach
    </tbody>
</table>

</x-rpd::table> html

list edit
Title: {{ $article->title }}
Author: {{ $article->author->firstname }} {{ $model->author->lastname }}
Download TXT version
html html html html or html html html html html html html ``` ## Credits - [Felice Ostuni](https://github.com/zofe) - [All Contributors](../../contributors) Inspirations: - [rapyd-laravel](https://github.com/zofe/rapyd-laravel) my old laravel library (150k downloads) - [livewire](https://livewire.laravel.com/) widely used "full-stack framework" to compose laravel application by widgets - [laravel-bootstrap-components](https://github.com/bastinald/laravel-bootstrap-components) smart library which reduced the complexity of this one ## License & Contacts Rapyd is licensed under the [MIT license](http://opensource.org/licenses/MIT) Please join me and review my work on [Linkedin](https://www.linkedin.com/in/feliceostuni/) thanks

All versions of rapyd-admin with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/config Version ^11.0
illuminate/contracts Version ^11.0
laravel/serializable-closure Version ^1.3
livewire/livewire Version ^3.0
touhidurabir/laravel-stub-generator Version ^1.0
zofe/rapyd-module-installer Version ^0.11
zofe/layout-module Version dev-main|^0.11
zofe/auth-module Version dev-main|^0.11
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 zofe/rapyd-admin contains the following files

Loading the files please wait ....