lojazone / helper
Package with helpers mixers
dev-master
2020-04-24 03:01 UTC
Requires
- php: ^7.2
This package is auto-updated.
Last update: 2025-03-24 14:02:17 UTC
README
Helpers
Laravel 5.8 Require bootstrap 4.4.1 min Optional font awesome 5.13.0 min
Installation and Configuration
-
Run command
composer require lojazone/helper
-
Add to config/app.php
'providers' => [ ... /* * Package Service Providers... */ Lojazone\Helper\Providers\HelperServiceProvider::class, ... ], 'aliases' => [ ... 'Helper' => \Lojazone\Helper\Support\Helper::class, ]
Mix helpers to help
* mix_url
* isActive
* messages
* listDir
mix_url:
this function to create base url with laravel mix compilation
How to use:
<link rel="stylesheet" href="{{ Helper::mix_url('css/app.css') }}">
Usage to create base url from compiling files with laravel-mix
isActive:
this function to add a css class to code is a link active or not
How to use:
<a href="{{ route('blog.index') }}" class="{{ isActive('blog.index', 'my_class_active') }}">Blog</a>
'my_class_active' class is optional or to use another class name.
messages:
this function to create messages using types class of bootstrap in your sessions
How to use messages before request with errors:
All messages from session:
@include('helper::partials.session_message')
or
Message to input especific:
<div class="col-12 col-md-6">
<div class="form-group">
<label for="first_name" class="required">First Name</label>
<input type="text" name="first_name" id="first_name" class="form-control {{ $errors->has('first_name') ? 'is-invalid' : '' }}">
<span class="d-block">@include('helper::partials.invalid_message', ['input' => 'first_name'])</span>
</div>
</div>
How to use messages create with Helper::message(...):
include before call js bootstrap:
@include('helper::partials.notify_message')
Call this funcition with types = success, primary, info, warning or danger:
Helper::messages('Welcome', "Last login in " . now()->format('d M Y H:i'), 'success', 2000);
Helper::messages('Welcome', "Last login in " . now()->format('d M Y H:i'), 'primary', 3000);
Helper::messages('Welcome', "Last login in " . now()->format('d M Y H:i'), 'info', 4000);
Helper::messages('Welcome', "Last login in " . now()->format('d M Y H:i'), 'warning', 5000);
Helper::messages('Welcome', "Last login in " . now()->format('d M Y H:i'), 'danger', 6000);
listDir:
this function to list files in determinate directory