PHP code example of devcuongnguyen / ophim-core

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

    

devcuongnguyen / ophim-core example snippets


use Ophim\Core\Models\User as OphimUser;

class User extends OphimUser {
    use HasApiTokens, HasFactory, Notifiable;
    // ...
}

Route::get('/', function () {
    return view('welcome');
});