1. Go to this page and download the library: Download millat/laravel-hooks library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
millat / laravel-hooks example snippets
do_action( string $tag, mixed $arg )
add_action( string $tag, callable $callback, int $priority = 10, int $accepted_args = 1 )
apply_filters( string $tag, mixed $value )
add_filter( string $tag, callable $callback, int $priority = 10, int $accepted_args = 1 )