FieldGoal – Don’t build a whole backend just for one stupid form.

https://laravelnews.imgix.net/images/fieldgoal-featured-thumb.png?ixlib=php-3.3.1

FieldGoal provides form endpoints as a service, so your simple sites can stay simple. Build your form your way, point your form at FieldGoal, submissions are delivered to wherever you want.

The post FieldGoal – Don’t build a whole backend just for one stupid form. appeared first on Laravel News.


Join the Laravel Newsletter to get Laravel articles like this directly in your inbox.

Laravel News

Memes that made me laugh 69

https://1.bp.blogspot.com/-p9KbHaFdZ9o/YQYkd_3IdBI/AAAAAAAAtUw/P9g_NxfiQG4qyhL0O6hOfv-d-OvxQZVFgCPcBGAsYHg/

 

Gathered from here and there over the past week.  Click any image for a larger view.

(Verily, the mind doth boggle . . . because you know the only reason that warning label is there must be because somebody did that!)

More next week.

Peter

Bayou Renaissance Man

Lodata


Discoverable APIs

OData RESTful APIs are easy to consume. The OData metadata, a machine-readable description of the data model of the APIs,
enables the creation of powerful generic client proxies and tools.

The metadata is available as standard OpenAPI v3(opens new window)
which can be loaded into API collaboration platforms like Postman.

Discover insights

Easily connect to, model, and visualize your data in off-the-shelf business intelligence tools.

Microsoft Power BI(opens new window) supports OData as a first class data connector. Develop
reports locally, and then publish them to the PowerBI Service(opens new window)
where they’ll refresh themselves unattended, directly from your Lodata service.

Laravel News Links

Aimeos 2021.07 Release

https://laravelnews.s3.amazonaws.com/images/aimeos-2021.07.jpg

Aimeos, the open-source Laravel e-commerce app, just released v2021.07, which includes a new default theme, a new settings panel, and more.

New Theme

Here is a screenshot of the product list page of the new theme and it also fully supports right to left languages like Arabic as the previous theme did. Colors can be customized easily by using the defined CSS variables and you can adapt the theme totally to your needs.

Admin settings panel

There’s a new panel in the admin backend available for adding configuration options per site including images, shop and theme related settings with is available in “Configuration > Settings”. It’s especially useful in multi-site environments because it allows site admins (shop owners) to configure basic settings themselves and also to choose one of the available themes.

If you use Laravel and the Aimeos installation is configured as multi-site setup with custom domains, shop owners can also set their custom domain name in that panel.

Extended order management

In the new release, the detail view of the Aimeos order panel has been extended and contains warehouse management related fields now.

In addition to the already available status and “Delivery in” fields, it’s possible to handle partial deliveries in Aimeos now if e.g. only one product is available for some reasons but two has been ordered. By tracking which and how many products you’ve already sent to the customer, you get lean warehouse management functionality in case you don’t have a specialized system for that kind of task.

More…

To see everything in this release check out the official release announcement and if you are interested in trying it out you can find setup instructions on their Laravel landing page

Laravel News

Making Patterned Edge-Grain Plywood

https://theawesomer.com/photos/2021/07/making_edge_grained_plywood_t.jpg

Making Patterned Edge-Grain Plywood

Link

Thanks to its layered structure, plywood is a strong and versatile material that costs less than hardwood boards. Carpenters often work to hide exposed plywood edges, but Michael Alm came up with a better solution – he created his own custom plywood with beautiful and intricate edge patterns which you’d never want to hide.

The Awesomer

Mike Rowe: “Your Work Isn’t Your Worth”

http://img.youtube.com/vi/ebn9KSTi_yU/0.jpg

 

That’s the title of a very interesting video interview that Mike Rowe, of "Dirty Jobs" fame, gave to Trinity Broadcasting Network last month.  I highly recommend that you take the time to watch it.  It’s only nine minutes long, but encapsulates the dilemma of our current workforce, and young people planning to enter that workforce.

Sobering thoughts, particularly if you have children planning what they want to do with their lives.

Peter

Bayou Renaissance Man

Robot Sets Up 100,000 Dominoes

http://img.youtube.com/vi/8HEfIJlcFbs/0.jpg

Robot Sets Up 100,000 Dominoes

Link

Setting up dominoes can be time-consuming and requires a steady hand. We’ve seen robots that can stand one domino at a time. Mark Rober and his engineering pals presents DOM – a custom-built robot that can set up 300 dominoes at a time. The robot arm and Hot Wheels track loading system is equally awesome.

The Awesomer

Robot Sets Up 100,000 Dominoes

http://img.youtube.com/vi/8HEfIJlcFbs/0.jpg

Robot Sets Up 100,000 Dominoes

Link

Setting up dominoes can be time-consuming and requires a steady hand. We’ve seen robots that can stand one domino at a time. Mark Rober and his engineering pals presents DOM – a custom-built robot that can set up 300 dominoes at a time. The robot arm and Hot Wheels track loading system is equally awesome.

The Awesomer

Laravel Loggable models

https://opengraph.githubassets.com/db0e6a23a6df1faaf7e544f2a9b8ab02dba173b75fcf45e2badc54b4b6c0c8d4/alkhachatryan/laravel-loggable

Laravel Loggable – Log you model changes

Software License
Packagist Version
CodeFactor Grade
Total Downloads

Laravel Loggable is a package for eloquent models, which will monitor the changes on the models and log.
It supports two drivers: File and Database.

Features

  • High-configurable
  • Two drivers (database and file)
  • Possibillity to use two drivers at once
  • Possibillity to select the columns for the model which should be logged
  • Possibillity to select the actions for the model which should be logged (create, edit, delete)
  • Facade-based structure to fetch the logs for specific model
  • Much more

Logs

Installation

Install the package.

composer require alkhachatryan/laravel-loggable

Publish the configuration file

php artisan vendor:publish --tag=loggable

Run migration

php artisan migrate

Configuration

Open the configuration file at /config/loggable.php

Set the driver whhich will log the model changes (can be both).
However, it’s recommended to use the database driver so you can fetch the logs in the future.

That’s it!

Usage

class Post extends Model
{
    /** Include the loggable trait */
    use Loggable;
    
    /** Specified actions for this model */
    public $loggable_actions = ['edit', 'create', 'delete'];

    /** Specified fields for this model */
    public $loggable_fields  = ['title', 'body'];

    protected $fillable = ['title', 'body'];
}
Retriving the model logs via Facade
Loggable::model('App\Post');
Retriving the model logs via Model
LoggableModel::whereModelName('App\Post')->orderBy('id', 'DESC')->paginate(10);
Event

You can use the event Alkhachatryan\LaravelLoggable\Events\Logged in pair with your listeners.

Changelog

Please see CHANGELOG for more information what has changed recently.

Todo

Tests!!! Tests!!! Tests!!!

Security

If you discover any security-related issues, please email info@khachatryan.org instead of using the issue tracker.

License

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

Laravel News Links