Skip to content

Commit

Permalink
Merge pull request #17 from SirRufusss/buecherverleih
Browse files Browse the repository at this point in the history
Buecherverleih
  • Loading branch information
HolgerHatGarKeineNode authored Aug 3, 2023
2 parents 6c181ed + 2eb2ea5 commit 8e43b84
Show file tree
Hide file tree
Showing 18 changed files with 18,062 additions and 1 deletion.
20 changes: 20 additions & 0 deletions app/Http/Livewire/BooksForPlebs/BookRentalGuide.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

namespace App\Http\Livewire\BooksForPlebs;

use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;

class BookRentalGuide extends Component
{
public function render()
{
return view('livewire.books-for-plebs.book-rental-guide')->layout('layouts.guest', [
'SEOData' => new SEOData(
title: __('BooksForPlebs'),
description: __('Local book lending for Bitcoin-Meetup\'s.'),
image: asset('img/book-rental.jpg')
),
]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function up(): void
$table->id();
$this->nullableMorphs($table, 'commentator', 'commentator_reactions');
$table->foreignId('comment_id')->references('id')->on('comments')->cascadeOnDelete();
$table->string('reaction')->collation('C.UTF-8');
$table->string('reaction');
$table->timestamps();
});

Expand Down
Loading

0 comments on commit 8e43b84

Please sign in to comment.