PHP code example of creode / laravel-nova-meet-the-team

1. Go to this page and download the library: Download creode/laravel-nova-meet-the-team 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/ */

    

creode / laravel-nova-meet-the-team example snippets


'providers' => [
    ...
    Creode\LaravelNovaMeetTheTeam\Providers\MeetTheTeamServiceProvider::class,
    ...
],

use Creode\LaravelNovaMeetTheTeam\Repositories\TeamRepository;
use Creode\LaravelNovaMeetTheTeam\Repositories\TeamMemberRepository;

$teams = $teamRepository->with('members')->ordered()->get();
bash
php artisan vendor:publish --tag="nova-meet-the-team-migrations"
bash
php artisan vendor:publish --tag="nova-meet-the-team-config"