PHP code example of ctf0 / tagos

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

    

ctf0 / tagos example snippets


    // database/seeds/DatabaseSeeder.php

    class DatabaseSeeder extends Seeder
    {
        /**
         * Run the database seeds.
         */
        public function run()
        {
            //...

            $this->call(TagsTableSeeder::class);
        }
    }
    

    use ctf0\Tagos\Traits\HasTags;
    use Illuminate\Database\Eloquent\Model;

    class Post extends Model
    {
        use HasTags;
    }
    

app('cache')->get('tagos');

        $model = Post::create([...]);

        app('tagos')->saveTags($model, $request);
        

        $model = Post::find($id)->update([...]);

        app('tagos')->saveTags($model, $request);