parent
1fc8f4f802
commit
5961e52797
@ -1,16 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Livewire;
|
|
||||||
|
|
||||||
use App\Models\Bookmark as ModelsBookmark;
|
|
||||||
use Livewire\Component;
|
|
||||||
|
|
||||||
class Bookmark extends Component
|
|
||||||
{
|
|
||||||
public ModelsBookmark $bookmark;
|
|
||||||
|
|
||||||
public function save(ModelsBookmark $bookmark)
|
|
||||||
{
|
|
||||||
$this->bookmark = $bookmark;
|
|
||||||
}
|
|
||||||
}
|
|
28
app/View/Components/Bookmark.php
Normal file
28
app/View/Components/Bookmark.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Components;
|
||||||
|
|
||||||
|
use App\Models\Bookmark as ModelsBookmark;
|
||||||
|
use Closure;
|
||||||
|
use Illuminate\Contracts\View\View;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Bookmark extends Component
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Create a new component instance.
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
public ModelsBookmark $bookmark
|
||||||
|
) {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the view / contents that represent the component.
|
||||||
|
*/
|
||||||
|
public function render(): View|Closure|string
|
||||||
|
{
|
||||||
|
return view('components.bookmark');
|
||||||
|
}
|
||||||
|
}
|
@ -10,8 +10,7 @@
|
|||||||
"require": {
|
"require": {
|
||||||
"php": "^8.2",
|
"php": "^8.2",
|
||||||
"laravel/framework": "^11.0",
|
"laravel/framework": "^11.0",
|
||||||
"laravel/tinker": "^2.9",
|
"laravel/tinker": "^2.9"
|
||||||
"livewire/livewire": "^3.5"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fakerphp/faker": "^1.23",
|
"fakerphp/faker": "^1.23",
|
||||||
|
78
composer.lock
generated
78
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "0e9662e53ae62503767a15f5dc9e9a72",
|
"content-hash": "2077c394f6aa7d63f49d97c8c4f2764c",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "brick/math",
|
"name": "brick/math",
|
||||||
@ -1815,82 +1815,6 @@
|
|||||||
],
|
],
|
||||||
"time": "2024-01-28T23:22:08+00:00"
|
"time": "2024-01-28T23:22:08+00:00"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "livewire/livewire",
|
|
||||||
"version": "v3.5.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/livewire/livewire.git",
|
|
||||||
"reference": "72e900825c560f0e4e620185b26c5441a8914435"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/livewire/livewire/zipball/72e900825c560f0e4e620185b26c5441a8914435",
|
|
||||||
"reference": "72e900825c560f0e4e620185b26c5441a8914435",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"illuminate/database": "^10.0|^11.0",
|
|
||||||
"illuminate/routing": "^10.0|^11.0",
|
|
||||||
"illuminate/support": "^10.0|^11.0",
|
|
||||||
"illuminate/validation": "^10.0|^11.0",
|
|
||||||
"league/mime-type-detection": "^1.9",
|
|
||||||
"php": "^8.1",
|
|
||||||
"symfony/console": "^6.0|^7.0",
|
|
||||||
"symfony/http-kernel": "^6.2|^7.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"calebporzio/sushi": "^2.1",
|
|
||||||
"laravel/framework": "^10.15.0|^11.0",
|
|
||||||
"laravel/prompts": "^0.1.6",
|
|
||||||
"mockery/mockery": "^1.3.1",
|
|
||||||
"orchestra/testbench": "^8.21.0|^9.0",
|
|
||||||
"orchestra/testbench-dusk": "^8.24|^9.1",
|
|
||||||
"phpunit/phpunit": "^10.4",
|
|
||||||
"psy/psysh": "^0.11.22|^0.12"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"laravel": {
|
|
||||||
"providers": [
|
|
||||||
"Livewire\\LivewireServiceProvider"
|
|
||||||
],
|
|
||||||
"aliases": {
|
|
||||||
"Livewire": "Livewire\\Livewire"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"src/helpers.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Livewire\\": "src/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Caleb Porzio",
|
|
||||||
"email": "calebporzio@gmail.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "A front-end framework for Laravel.",
|
|
||||||
"support": {
|
|
||||||
"issues": "https://github.com/livewire/livewire/issues",
|
|
||||||
"source": "https://github.com/livewire/livewire/tree/v3.5.0"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://github.com/livewire",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2024-05-21T13:39:04+00:00"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "monolog/monolog",
|
"name": "monolog/monolog",
|
||||||
"version": "3.6.0",
|
"version": "3.6.0",
|
||||||
|
@ -17,19 +17,6 @@ body {
|
|||||||
@import 'components/bookmark';
|
@import 'components/bookmark';
|
||||||
@import 'components/pagination';
|
@import 'components/pagination';
|
||||||
|
|
||||||
a {
|
|
||||||
&,
|
|
||||||
&:active,
|
|
||||||
&:visited {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #88f;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: #FFF3B0;
|
color: #FFF3B0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -16,18 +16,6 @@
|
|||||||
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
a {
|
|
||||||
&,
|
|
||||||
&:active,
|
|
||||||
&:visited {
|
|
||||||
color: #9E2A2B;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 1ex;
|
padding: 1ex;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
{{ $bookmarks->links() }}
|
{{ $bookmarks->links() }}
|
||||||
|
|
||||||
@foreach ($bookmarks as $bookmark)
|
@foreach ($bookmarks as $bookmark)
|
||||||
<livewire:bookmark :bookmark="$bookmark" />
|
<x-bookmark :bookmark="$bookmark" />
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
{{ $bookmarks->links() }}
|
{{ $bookmarks->links() }}
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<p>
|
<x-bookmark :bookmark="$bookmark" />
|
||||||
<a href="{{ action('BookmarkController@index') }}">← Back</a>
|
|
||||||
</p>
|
|
||||||
<livewire:bookmark :bookmark="$bookmark" />
|
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
<div class="bookmark">
|
<div class="bookmark">
|
||||||
<p class="bookmark-title">
|
<p class="bookmark-title">{{ $bookmark->title }}</p>
|
||||||
{{ $bookmark->title }}
|
|
||||||
@action('index')
|
|
||||||
<a href="/bookmarks/{{ $bookmark->id }}">#</a>
|
|
||||||
@endaction
|
|
||||||
</p>
|
|
||||||
<p class="bookmark-href"><a href="{{ $bookmark->href }}">{{ $bookmark->href }}</a></p>
|
<p class="bookmark-href"><a href="{{ $bookmark->href }}">{{ $bookmark->href }}</a></p>
|
||||||
@if (!empty($bookmark->description))
|
@if (!empty($bookmark->description))
|
||||||
<div class="bookmark-description">
|
<div class="bookmark-description">
|
@ -3,9 +3,5 @@
|
|||||||
use App\Http\Controllers\BookmarkController;
|
use App\Http\Controllers\BookmarkController;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
Route::get(
|
Route::get('/', [BookmarkController::class, 'index']);
|
||||||
'/', function () {
|
Route::resource('bookmarks', BookmarkController::class)->except(['index']);
|
||||||
return redirect()->action([BookmarkController::class, 'index']);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
Route::resource('bookmarks', BookmarkController::class);
|
|
||||||
|
Loading…
Reference in New Issue
Block a user