mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 23:56:47 +00:00
21 lines
514 B
PHP
21 lines
514 B
PHP
<?php
|
|
|
|
namespace App\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')->with( [
|
|
'SEOData' => new SEOData(
|
|
title: __('BooksForPlebs'),
|
|
description: __('Lokale Buchausleihe für Bitcoin-Meetups.'),
|
|
image: asset('img/book-rental.jpg')
|
|
),
|
|
]);
|
|
}
|
|
}
|