database seed and some basic frontend
This commit is contained in:
parent
ad30a02a52
commit
0d22d49119
@ -20,4 +20,7 @@ The goal of this project is to develop a web application which manages the devic
|
||||
propably MIT
|
||||
|
||||
## Releasedate
|
||||
31.03.2023
|
||||
latest: 15.04.2023
|
||||
|
||||
## About
|
||||
Laravel is a full feature framework
|
12
device-app/app/Models/Device.php
Normal file
12
device-app/app/Models/Device.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Device extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
use HasFactory;
|
||||
}
|
30
device-app/database/factories/DeviceFactory.php
Normal file
30
device-app/database/factories/DeviceFactory.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Device>
|
||||
*/
|
||||
class DeviceFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'device_id' => '1',
|
||||
'title' => 'Test Device One',
|
||||
'device_type' => 'type1',
|
||||
'description' => 'des',
|
||||
'accessories' => 'acc',
|
||||
'rz_username_buyer' => 'rzb',
|
||||
'serial_number' => '123',
|
||||
'image_url' => 'www.url.de'
|
||||
];
|
||||
}
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Faker\Core\Number;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
@ -18,11 +19,11 @@ class UserFactory extends Factory
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
|
||||
'remember_token' => Str::random(10),
|
||||
'rz_username' => 'admin',
|
||||
'full_name' => 'Admin',
|
||||
'organisation_unit' => 11111111,
|
||||
'has_admin_privileges' => true,
|
||||
'hashed_password' => 'vollgeheim', // password
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,9 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
|
||||
use App\Models\Device;
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
@ -18,5 +21,33 @@ public function run(): void
|
||||
// 'name' => 'Test User',
|
||||
// 'email' => 'test@example.com',
|
||||
// ]);
|
||||
|
||||
Device::factory()->create([
|
||||
'device_id' => '1',
|
||||
'title' => 'Test Device One',
|
||||
'device_type' => 'type1',
|
||||
'description' => 'des',
|
||||
'accessories' => 'acc',
|
||||
'rz_username_buyer' => 'rzb',
|
||||
'serial_number' => '123',
|
||||
'image_url' => 'www.url.de'
|
||||
]);
|
||||
|
||||
//User::create([
|
||||
// [
|
||||
// 'rz_username' => 'admin',
|
||||
// 'full_name' => 'Admin',
|
||||
// 'organisation_unit' => '11111111',
|
||||
// 'has_admin_privileges' => true,
|
||||
// 'hashed_password' => 'vollgeheim'
|
||||
// ],
|
||||
// [
|
||||
// 'rz_username' => 'user',
|
||||
// 'full_name' => 'User',
|
||||
// 'organisation_unit' => '66666666',
|
||||
// 'has_admin_privileges' => false,
|
||||
// 'hashed_password' => 'test123'
|
||||
// ]
|
||||
//]);
|
||||
}
|
||||
}
|
||||
|
@ -1 +1,9 @@
|
||||
<h1>Device DEtail</h1>
|
||||
<h1>Device Detail</h1>
|
||||
<h2>{{ $device['device_id'] }}</h2>
|
||||
<h2>{{ $device['title'] }}</h2>
|
||||
<h2>{{ $device['device_type'] }}</h2>
|
||||
<h2>{{ $device['description'] }}</h2>
|
||||
<h2>{{ $device['accessories'] }}</h2>
|
||||
<h2>{{ $device['rz_username_buyer'] }}</h2>
|
||||
<h2>{{ $device['serial_number'] }}</h2>
|
||||
<h2>{{ $device['image_url'] }}</h2>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<h1>Device List</h1>
|
||||
@unless(count($devices) == 0)
|
||||
@foreach($devices as $device)
|
||||
@endforeach
|
||||
|
||||
@foreach ($devices as $device)
|
||||
<h2>
|
||||
<a href="/devices/{{ $device['device_id'] }}">{{$device['title']}}</<a>
|
||||
</h2>
|
||||
@endforeach
|
||||
@else
|
||||
<p>No devices</p>
|
||||
@endunless
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
use GuzzleHttp\Psr7\Request;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Models\Device;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -19,9 +19,15 @@
|
||||
});
|
||||
|
||||
Route::get('/devices', function () {
|
||||
return view('deviceList');
|
||||
//return view('deviceList');
|
||||
return view('deviceList', [
|
||||
//'devices' => Device::all()
|
||||
'devices' => Device::all()
|
||||
]);
|
||||
});
|
||||
|
||||
Route::get('/devices/{id}', function ($id) {
|
||||
return view('deviceDetail');
|
||||
return view('deviceDetail', [
|
||||
'device' => Device::find($id)
|
||||
]);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user