• Stars
    star
    2
  • Language
    PHP
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Laravel package to handle a simple blog

Latest Version on Packagist GitHub Workflow Status Total Downloads

Installation

You can install the package via composer:

composer require abr4xas/simple-blog

You can publish and run the migrations and everything else with:

php artisan vendor:publish --provider="Abr4xas\SimpleBlog\SimpleBlogServiceProvider" --tag="simple-blog-migrations"
php artisan migrate

Usage

This package uses a polymorphic relationship to associate the Items model with the model of your choice, the only thing you have to do is add the following trait: Abr4xas\SimpleBlog\Traits\HasArticle to the model you want to use.

To create an article you need to do something like this:

$user->articles()->create([
    'title' => 'My first fake post',
    'slug' => 'my-first-post',
    'excerpt' => 'The excerpt of this fake post',
    'body' => 'The body of this fake post',
    'status' => ArticleStatus::PUBLISHED(), // ArticleStatus::DRAFT()
    'file' => 'https://i.pinimg.com/originals/4f/e7/06/4fe7066d4f3aa7201e38484230fc32b3.jpg',
]);

Syntax highlighting

This package uses: Torchlight CommonMark, so, you need an api key to make it work. Follow this docs: https://torchlight.dev/docs/clients/commonmark-php

If you want to activate the copyable option to torchlight you need to do the following:

Edit your config/torchlight.php file to include the following in the options array:

'copyable' => true,

Next, make sure to register this javascript snippet inside your app.js file like this:

import Alpine from "alpinejs";

window.Alpine = Alpine;

Alpine.data("codeBlock", () => ({
    showMessage: false,
    copyToClipboard() {
        text = document.querySelector(".torchlight-copy-target").textContent;
        navigator.clipboard.writeText(text);
        // show the "copied" message for 2 seconds
        this.showMessage = true;
        setTimeout(() => (this.showMessage = false), 2000);
    },
}));

Alpine.start();

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

More Repositories

1

instapago

Plugin instapago para woocommerce.
PHP
18
star
2

php-instapago

Librería Instapago para PHP
PHP
17
star
3

node-instapago

Librería Instapago para Node.js
JavaScript
12
star
4

bancos-json

Código y Bancos correspondientes de Venezuela
11
star
5

location

PHP
5
star
6

post

los post de mi blog .md
4
star
7

vagrant-config

My vagrant config
PHP
4
star
8

laravel-plans

Laravel Plans is a package for SaaS apps that need management over plans, features, subscriptions, events for plans or limited, countable features.
PHP
4
star
9

uruguay-noma

Comando para crear una tabla con los datos de departamentos y localidades de #Uruguay
PHP
3
star
10

utils

Paquete de uso personal con cosas que uso día a día...
PHP
3
star
11

blog.abr4xas.org

Mi blog, con laravel
HTML
2
star
12

gmaps-input-backpack

Custom Google Maps Input for Laravel Backpack
Blade
2
star
13

pblog

My pelican blog config...
Makefile
2
star
14

enlamano

Paquete para usar el webservice de la financiera "En la mano"
PHP
1
star
15

publish-to-dev-to

PHP
1
star
16

convert

:D
PHP
1
star
17

workbench

Script para preparar el entorno para compilar una ROM para Firefox OS [DEBIAN]
Shell
1
star
18

flexgen

flexgen - A Front End Post (free) HTML5, responsive template
CSS
1
star
19

aprende

PHP
1
star
20

handletranslations

PHP
1
star
21

oauth2-twitch

Twitch Helix Provider for OAuth 2.0 Client
PHP
1
star
22

react-native-crea-aplicaciones-para-android-y-ios-con-react

JavaScript
1
star
23

reportpayment

Only for Direct Bank Transfer, or Bank Account Clearing System (BACS) (Available only for Venezuela)
PHP
1
star
24

MorrisJS-Test

Ejemplo de uso de Morris JS con php para crear gráficos.
PHP
1
star
25

dotfiles

Mis dotfiles
Shell
1
star
26

bofh-excuses

BOFH excuses, another foolish wp plugin.
PHP
1
star
27

memeticones

PHP
1
star
28

ReFu

Regulatory functions, an wordpess plug-in
PHP
1
star
29

abr4xas

1
star
30

GoogleAnalytics

Composer package for Laravel
HTML
1
star
31

mvd-omnibus

Pequeña librería para consultar las rutas y los horarios de llegada del bondi
PHP
1
star