Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Ready made admin panel for laravel. Just by installing get theme and views and many more.

License

NotificationsYou must be signed in to change notification settings

kajal98/generate_crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 arrayYoucandothis\Crud\CrudServiceProvider::class,Intervention\Image\ImageServiceProvider::class,

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

Remove below files

database/migrationsdatabase/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

Registerregister
Loginlogin
Dashboard1
User Listing2
Change Profile3
Change Password4
Site Settings5
Blog Listing6
Add new blog7
Edit Blog8
Show Blog9
Inquiries Listing10
Extra Pages11
Edit Extra Pages12
FAQs13
Testimonials14
Forgot Password15
Reset Password16


[8]ページ先頭

©2009-2025 Movatter.jp