Download the PHP package kajalpandya/generate_laravel_crud without Composer

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

Just type your entity name and generate model, views, controller

create new directory in your root folder

$ composer create-project --prefer-dist laravel/laravel blog

go to your directory

$ cd blog

move .env.example file to .env

$ mv .env.example .env

generate your app key

$ php artisan key:generate

set your database configuration in .env file

run localhost:8000 in your browser

if all working good then put this line to your composer.json file

"kajalpandya/generate_laravel_crud": "dev-master",

update composer

$ composer update

Register provider and aliases

then put this line to your config/app.php file in providers array Youcandothis\Crud\CrudServiceProvider::class, Intervention\Image\ImageServiceProvider::class,

and this in aliases array 'Image' => Intervention\Image\Facades\Image::class,

Remove below files

database/migrations database/seeds

Clear the cache

$ php artisan config:cache

Auto load files

$ composer dump-autoload

Clear the cache again

$ php artisan config:cache

Finaly publish the provider

$ php artisan vendor:publish --provider="Youcandothis\Crud\CrudServiceProvider"

copy routes from below file

vendor/kajalpandya/youcandothis/crud/src/web.php

Register middleware in app\Http\Kernel.php in $routeMiddleware group

'admin' => \App\Http\Middleware\AdminOnly::class,

autoload helper file in your composer.json file under "autoload" array

"files": [ "app/helpers.php" ]

put this in DatabaseSeeder run function

$this->call(SiteSettingsTableSeeder::class); $this->call(UsersTableSeeder::class); $this->call(BlogCategoriesTableSeeder::class); $this->call(BlogsTableSeeder::class); $this->call(ExtrasTableSeeder::class); $this->call(TestimonialsTableSeeder::class);

then run

$ php artisan migrate && php artisan db:seed

make tmp folder in public

then run localhost:8000

Have fun..!!!!!

clone direct repository from below url

https://github.com/kajal98/laravel-ready-admin-panel

Screenshots

Register register
Login login
Dashboard 1
User Listing 2
Change Profile 3
Change Password 4
Site Settings 5
Blog Listing 6
Add new blog 7
Edit Blog 8
Show Blog 9
Inquiries Listing 10
Extra Pages 11
Edit Extra Pages 12
FAQs 13
Testimonials 14
Forgot Password 15
Reset Password 16


All versions of generate_laravel_crud with dependencies

PHP Build Version
Package Version
Requires illuminate/http Version ^10.0.3
illuminate/config Version ^10.0.3
illuminate/support Version ^10.0.3
illuminate/database Version ^10.0.3
illuminate/pagination Version ^10.0.3
illuminate/console Version ^10.0.3
illuminate/filesystem Version ^10.0.3
php Version ^8.1.0
cviebrock/eloquent-sluggable Version ^10.0.0
intervention/image Version ^2.7.2
laravelcollective/html Version ^6.4.0
spatie/laravel-newsletter Version ^5.1.1
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 kajalpandya/generate_laravel_crud contains the following files

Loading the files please wait ....