2017 © Pedro Peláez
 

crud generate_laravel_crud

Run command in terminal and make ready made crud for your entity

image

kajalpandya/generate_laravel_crud

Run command in terminal and make ready made crud for your entity

  • Thursday, July 26, 2018
  • by kajal98
  • Repository
  • 1 Watchers
  • 0 Stars
  • 216 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 12 Versions
  • 0 % Grown

The README.md

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, (*1)

go to your directory

$ cd blog, (*2)

move .env.example file to .env

$ mv .env.example .env, (*3)

generate your app key

$ php artisan key:generate, (*4)

set your database configuration in .env file, (*5)

run localhost:8000 in your browser, (*6)

if all working good then put this line to your composer.json file, (*7)

"kajalpandya/generate_laravel_crud": "dev-master",, (*8)

update composer

$ composer update, (*9)

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,, (*10)

and this in aliases array 'Image' => Intervention\Image\Facades\Image::class,, (*11)

Remove below files

database/migrations database/seeds, (*12)

Clear the cache

$ php artisan config:cache, (*13)

Auto load files

$ composer dump-autoload, (*14)

Clear the cache again

$ php artisan config:cache, (*15)

Finaly publish the provider

$ php artisan vendor:publish --provider="Youcandothis\Crud\CrudServiceProvider", (*16)

copy routes from below file

vendor/kajalpandya/youcandothis/crud/src/web.php, (*17)

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

'admin' => \App\Http\Middleware\AdminOnly::class,, (*18)

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

"files": [ "app/helpers.php" ], (*19)

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);, (*20)

then run

$ php artisan migrate && php artisan db:seed, (*21)

make tmp folder in public

then run localhost:8000, (*22)

Have fun..!!!!!, (*23)

clone direct repository from below url

https://github.com/kajal98/laravel-ready-admin-panel, (*24)

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, (*25)

The Versions

05/07 2018

v1.0.6

1.0.6.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud

05/07 2018

v1.0.5

1.0.5.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud

05/07 2018

v1.0.4

1.0.4.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud

05/07 2018

v1.0.3

1.0.3.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud

05/07 2018

v1.0.1

1.0.1.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud

05/07 2018

v1.0.0

1.0.0.0

Run command in terminal and make ready made crud for your entity

  Sources   Download

The Requires

 

by Kajal

laravel repository cache eloquent crud model laravel crud adminpanel generate crud