PHP code example of karabinse / laravel-commentable
1. Go to this page and download the library: Download karabinse/laravel-commentable 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/ */
karabinse / laravel-commentable example snippets
use Karabin\Commentable\Concerns\Commentable;
class Product extends Model
{
use Commentable;
protected $guarded = ['location'];
return [
'models' => [
'comment' => \Karabin\Commentable\Models\Comment::class,
],
// Add models that have comments here
'model_map' => [
],
'data' => [
'comment' => \Karabin\Commentable\Data\CommentData::class,
],
];
class Customer extends Model
{
use Commentable, HasFactory;
use App\Data\CommentData;
use App\Models\Customer;
use App\Models\Product;
return [
'models' => [
'comment' => \Karabin\Commentable\Models\Comment::class,
],
// Add models that have comments here
'model_map' => [
'customers' => Customer::class,
'products' => Product::class,
],
'data' => [
'comment' => CommentData::class,
],
];