1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 10:54:41 +00:00

All models

This commit is contained in:
2022-05-26 11:20:47 +07:00
parent 3146fb1fd0
commit c4f98fdb58
14 changed files with 248 additions and 26 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Offer extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'owner_id',
'name',
'type',
'price',
'rooms',
'yandex_mark',
'text',
'is_group',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
// 'is_group' => 'boolean',
];
}

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class OfferPhoto extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'offer_id',
'file',
];
}

View File

@@ -0,0 +1,35 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Order extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'offer_id',
'user_id',
'start_date',
'end_date',
'price',
'discount',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'start_date' => 'datetime',
'end_date' => 'datetime',
];
}

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Review extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'offer_id',
'user_id',
'comment',
'rating',
];
}

View File

@@ -2,7 +2,6 @@
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
@@ -18,8 +17,12 @@ class User extends Authenticatable
* @var array<int, string>
*/
protected $fillable = [
'name',
'first_name',
'last_name',
'middle_name',
'email',
'phone',
'photo',
'password',
];
@@ -30,7 +33,6 @@ class User extends Authenticatable
*/
protected $hidden = [
'password',
'remember_token',
];
/**
@@ -38,7 +40,7 @@ class User extends Authenticatable
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
// protected $casts = [
// 'email_verified_at' => 'datetime',
// ];
}

View File

@@ -13,7 +13,7 @@
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"laravel/sail": "^1.14",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",

2
backend/composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "1abc7822bd9f28e9a62986817bf04f76",
"content-hash": "3c9da13e09c625e7ca22f1d572bd7f2d",
"packages": [
{
"name": "brick/math",

View File

@@ -64,11 +64,6 @@ return [
'driver' => 'eloquent',
'model' => App\Models\User::class,
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*

View File

@@ -15,11 +15,13 @@ return new class extends Migration
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('first_name');
$table->string('last_name');
$table->string('middle_name')->nullable();
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('phone')->unique()->nullable();
$table->string('photo')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}

View File

@@ -0,0 +1,39 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('offers', function (Blueprint $table) {
$table->id();
$table->foreignId('owner_id');
$table->string('name');
$table->enum('type', ['studio']);
$table->decimal('price');
$table->unsignedSmallInteger('rooms');
$table->string('yandex_mark')->nullable();
$table->text('text');
$table->boolean('is_group');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('offers');
}
};

View File

@@ -13,13 +13,10 @@ return new class extends Migration
*/
public function up()
{
Schema::create('personal_access_tokens', function (Blueprint $table) {
Schema::create('offer_photos', function (Blueprint $table) {
$table->id();
$table->morphs('tokenable');
$table->string('name');
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->foreignId('offer_id');
$table->string('file');
$table->timestamps();
});
}
@@ -31,6 +28,6 @@ return new class extends Migration
*/
public function down()
{
Schema::dropIfExists('personal_access_tokens');
Schema::dropIfExists('offer_photos');
}
};

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('reviews', function (Blueprint $table) {
$table->id();
$table->foreignId('offer_id');
$table->foreignId('user_id');
$table->text('comment');
$table->unsignedFloat('rating');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('reviews');
}
};

View File

@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('orders', function (Blueprint $table) {
$table->id();
$table->foreignId('offer_id');
$table->foreignId('user_id');
$table->date('start_date');
$table->date('end_date');
$table->decimal('price');
$table->decimal('discount');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('orders');
}
};

View File

@@ -13,6 +13,6 @@ use Illuminate\Support\Facades\Route;
|
*/
Route::get('/', function () {
return view('welcome');
});
//Route::get('/', function () {
// return view('welcome');
//});