create all country tables
This commit is contained in:
12
app/Models/CountryCallsReport.php
Normal file
12
app/Models/CountryCallsReport.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CountryCallsReport extends Model
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\CountryCallsReportFactory> */
|
||||
use HasFactory;
|
||||
}
|
||||
12
app/Models/CountryKeypressReport.php
Normal file
12
app/Models/CountryKeypressReport.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CountryKeypressReport extends Model
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\CountryKeypressReportFactory> */
|
||||
use HasFactory;
|
||||
}
|
||||
12
app/Models/CountryMessageRatingReport.php
Normal file
12
app/Models/CountryMessageRatingReport.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CountryMessageRatingReport extends Model
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\CountryMessageRatingReportFactory> */
|
||||
use HasFactory;
|
||||
}
|
||||
12
app/Models/CountryVoiceRatingReport.php
Normal file
12
app/Models/CountryVoiceRatingReport.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CountryVoiceRatingReport extends Model
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\CountryVoiceRatingReportFactory> */
|
||||
use HasFactory;
|
||||
}
|
||||
12
app/Models/ExpertPerformance.php
Normal file
12
app/Models/ExpertPerformance.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ExpertPerformance extends Model
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\ExpertPerformanceFactory> */
|
||||
use HasFactory;
|
||||
}
|
||||
Reference in New Issue
Block a user