Skip to content

Commit 235cec6

Browse files
committed
Open Graph image
1 parent 5ee6156 commit 235cec6

9 files changed

+20
-1
lines changed

database/migrations/create_project_categories_table.php.stub

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ return new class() extends Migration {
1414
Schema::create('project_categories', function (Blueprint $table) {
1515
$table->id();
1616
$table->foreignId('image_id')->nullable()->constrained('files')->nullOnDelete();
17+
$table->foreignId('og_image_id')->nullable()->constrained('files')->nullOnDelete();
1718
$table->integer('position')->unsigned()->default(0);
1819
$table->json('status')->default(new Expression('(JSON_OBJECT())'));
1920
$table->json('title')->default(new Expression('(JSON_OBJECT())'));

database/migrations/create_projects_table.php.stub

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ return new class() extends Migration {
1414
Schema::create('projects', function (Blueprint $table) {
1515
$table->id();
1616
$table->foreignId('category_id')->constrained('project_categories')->onDelete('cascade');
17+
$table->foreignId('image_id')->nullable()->constrained('files')->nullOnDelete();
18+
$table->foreignId('og_image_id')->nullable()->constrained('files')->nullOnDelete();
1719
$table->date('date');
1820
$table->string('website')->nullable();
19-
$table->foreignId('image_id')->nullable()->constrained('files')->nullOnDelete();
2021
$table->json('status')->default(new Expression('(JSON_OBJECT())'));
2122
$table->json('title')->default(new Expression('(JSON_OBJECT())'));
2223
$table->json('slug')->default(new Expression('(JSON_OBJECT())'));

resources/views/admin/_form-category.blade.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<file-manager related-table="{{ $model->getTable() }}" :related-id="{{ $model->id ?? 0 }}"></file-manager>
1212
<file-field type="image" field="image_id" :init-file="{{ $model->image ?? 'null' }}"></file-field>
13+
<file-field type="image" field="og_image_id" :init-file="{{ $model->ogImage ?? 'null' }}" label="Open Graph image"></file-field>
1314

1415
@include('core::form._title-and-slug')
1516
<div class="mb-3">

resources/views/admin/_form.blade.php

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
<file-manager related-table="{{ $model->getTable() }}" :related-id="{{ $model->id ?? 0 }}"></file-manager>
1717
<file-field type="image" field="image_id" :init-file="{{ $model->image ?? 'null' }}"></file-field>
18+
<file-field type="image" field="og_image_id" :init-file="{{ $model->ogImage ?? 'null' }}" label="Open Graph image"></file-field>
1819
<files-field :init-files="{{ $model->files }}"></files-field>
1920

2021
@include('core::form._title-and-slug')

resources/views/public/index-of-category.blade.php

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
@extends('pages::public.master')
22

3+
@section('title', $category->title . '' . __('Projects') . '' . $websiteTitle)
4+
@section('ogTitle', $category->title)
5+
@section('ogImage', $category->present()->ogImage())
36
@section('bodyClass', 'body-projects body-projects-index body-page body-page-' . $page->id)
47

58
@section('page')

src/Http/Requests/CategoryFormRequest.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public function rules()
1010
{
1111
return [
1212
'image_id' => 'nullable|integer',
13+
'og_image_id' => 'nullable|integer',
1314
'title.*' => 'nullable|max:255',
1415
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
1516
'status.*' => 'boolean',

src/Http/Requests/FormRequest.php

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public function rules()
1313
'date' => 'required|date_format:Y-m-d',
1414
'website' => 'nullable|url|max:255',
1515
'image_id' => 'nullable|integer',
16+
'og_image_id' => 'nullable|integer',
1617
'title.*' => 'nullable|max:255',
1718
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
1819
'status.*' => 'boolean',

src/Models/Project.php

+5
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,9 @@ public function image(): BelongsTo
7070
{
7171
return $this->belongsTo(File::class, 'image_id');
7272
}
73+
74+
public function ogImage(): BelongsTo
75+
{
76+
return $this->belongsTo(File::class, 'og_image_id');
77+
}
7378
}

src/Models/ProjectCategory.php

+5
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,9 @@ public function image(): BelongsTo
8484
{
8585
return $this->belongsTo(File::class, 'image_id');
8686
}
87+
88+
public function ogImage(): BelongsTo
89+
{
90+
return $this->belongsTo(File::class, 'og_image_id');
91+
}
8792
}

0 commit comments

Comments
 (0)