first commit

This commit is contained in:
vedant-chavan
2024-06-12 20:29:05 +05:30
commit eff0228447
246 changed files with 25388 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Facades\Crypt;
use Illuminate\Foundation\Auth\User as Authenticatable;
class AdminMaster extends Authenticatable
{
use HasFactory;
use SoftDeletes;
protected $dates = ['deleted_at'];
protected $table = 'admin_masters';
public function getReview1()
{
return Crypt::decrypt( $this->review1);
}
}