1. Go to this page and download the library: Download zepson_admin/landing_page library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zepson_admin / landing_page example snippets
sh
php artisan DoctypeAdminLanding:install -a
sh
php artisan DoctypeAdminLanding:install -d
sh
php artisan DoctypeAdminLanding:install -g
sh
php artisan migrate
sh
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);
}
}