PHP code example of wislem / berrier

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

    

wislem / berrier example snippets

 artisan vendor:publish



use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        $this->call(UsersTableSeeder::class);
        $this->call(CategoriesTableSeeder::class);
        $this->call(PagesTableSeeder::class);
        $this->call(SettingsTableSeeder::class);
    }
}
 artisan migrate
 artisan db:seed

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable

class User extends \Wislem\Berrier\Models\User
 php
Wislem\Berrier\BerrierServiceProvider::class
config/app.php
composer dump-autoload
config/translatable.php
 php
    'locales' => [
        'en',
        'el',
        'de',
    ],
config/berrier.php