PHP code example of ovic-core / framework

1. Go to this page and download the library: Download ovic-core/framework 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/ */

    

ovic-core / framework example snippets

 bash
All         : php artisan migrate
Only vendor : php artisan migrate --path=\vendor\ovic-core\framework\database
 bash
php artisan db:seed --class=UsersTableSeeder

username    : Super Admin
user        : [email protected]
pass        : 12345678
 bash
php artisan vendor:publish --tag=ovic-auth --force
 bash
php artisan module:publish
 bash
All     : php artisan vendor:publish --provider="Ovic\Framework\FrameworkServiceProvider" --force
Config  : php artisan vendor:publish --tag=ovic-config --force
Assets  : php artisan vendor:publish --tag=ovic-assets --force
Views   : php artisan vendor:publish --tag=ovic-views --force
Lang    : php artisan vendor:publish --tag=ovic-lang --force
Auth    : php artisan vendor:publish --tag=ovic-auth --force
 bash
php artisan session:table
 bash
php artisan event:generate