zepson_admin / landing_page
Landing Page of Doctype Admin Panel
1.3.0
2021-02-07 16:44 UTC
Requires
- binarytorch/larecipe: v2.3.0
- intervention/image: ^2.4@dev
- livewire/livewire: 2.3.0
- realrashid/sweet-alert: dev-master
This package is not auto-updated.
Last update: 2024-11-11 10:28:24 UTC
README
Laravel 7 Admin Panel Landing Page for lazy developers.
Installation
Run Composer Require Command
composer require doctype_admin/landing_page
Install package assets
Install all assets
php artisan DoctypeAdminLanding:install -a
This command will publish
- config file named landing.php
- views files
- migrations files
- seed files
- landing page assets
- larecipe
Install config file only
php artisan DoctypeAdminLanding:install -c
Install view files only
php artisan DoctypeAdminLanding:install -f
Install migrations files only
php artisan DoctypeAdminLanding:install -m
Install seed files only
php artisan DoctypeAdminLanding:install -d
Install seed assets only
php artisan DoctypeAdminLanding:install -l
Install seed documentation only
php artisan DoctypeAdminLanding:install -g
Then migrate database
php artisan migrate
This Package includes three seed
- LandingsTableSeeder
- FeaturesTableSeeder
- ServicesTableSeeder
publish the seeds if haven't then initialize them in DatabaseSeeder.php
<?php use doctype_admin\Landing\Models\Service; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { // $this->call(UserSeeder::class); $this->call(LandingsTableSeeder::class); $this->call(FeaturesTableSeeder::class); $this->call(ServicesTableSeeder::class); } }
Note
If seed class is not found try running composer dump-autoload
Some of the minor text that may not be changed frequently and is not required to be stored in db is represented from config file feel free to change them
Package Config File
<?php return [ /* |-------------------------------------------------------------------------- | Prefix of landing page backend |-------------------------------------------------------------------------- | | Option to set the prefix of link to the backend. | Prefix "admin" recommended | */ 'prefix' => 'admin', /* |-------------------------------------------------------------------------- | Landing Page App Title |-------------------------------------------------------------------------- | */ 'app_name' => 'Doctype Admin', /* |-------------------------------------------------------------------------- | Landing Page Service Description |-------------------------------------------------------------------------- | */ 'service_description' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.', /* |-------------------------------------------------------------------------- | Describing App |-------------------------------------------------------------------------- | */ 'app_description_heading_1' => 'UNIQUE SCREENS THAT WORK PERFECTLY', 'app_description_1' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.', /* |-------------------------------------------------------------------------- | Download Our App Descriprion |-------------------------------------------------------------------------- | */ 'download_our_app_Heading' => 'We are here to listen from you deliver exellence', 'download_our_app_description' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod temp or incididunt ut labore et dolore magna aliqua. Ut enim ad minim.', /* |-------------------------------------------------------------------------- | Describing App |-------------------------------------------------------------------------- | */ 'app_description_heading_2' => 'We’ve made a life that will change you', 'app_description_2' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod temp or incididunt ut labore et dolore magna aliqua. Ut enim ad minim.', ];
Sidebar Navigation Cofiguration
In your admin panel go to config/adminlte.php then in menu section add
[ 'text' => 'Landing Page', 'icon' => 'fas fa-chess-rook', 'submenu' => [ [ 'text' => 'Feature', 'icon' => 'fas fa-fire', 'url' => 'admin/feature', ], [ 'text' => 'Service', 'icon' => 'fas fa-concierge-bell', 'url' => 'admin/service', ], [ 'text' => 'Plans', 'icon' => 'fas fa-money-check', 'url' => 'admin/plan', ], [ 'text' => 'Landing Setting', 'icon' => 'fas fa-cog', 'url' => 'admin/landing_setting', ], [ 'text' => 'Contact', 'icon' => 'fas fa-envelope-square', 'url' => 'admin/contact', ], ] ],
Admin Panel Screenshot
Todos
- Turbolink
- Better UI
- Support Chat
Package Used
License
MIT
DOCTYPE NEPAL ||DR.H2SO4