unrulynatives / helpers
Snippets, tools, views for Laravel 5.4 app
Installs: 451
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Language:CSS
Requires
- php: >=7.0.0
- illuminate/support: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 06:27:35 UTC
README
A set of code snippets and functions to use across all projects.
This package contains some modifications made over a fresh installation of Laravel >= 5.3.
With time, this package would contain all modifications of the bare Laravel app. In other words, as soon as you include this package in your composer.json, you will get fully working starter kit.
Features
-
Gravatar for your User model
-
some usefull css and jQuery tools included. See the DEMO in Starter kit for details and examples: http://dev.unrulynatives.com/feature
Installation
-
Add
"unrulynatives/helpers": "^1.0"
to your composer.json file. -
Add this to your
config/app.php
file in packages sectionUnrulynatives\Helpers\HelpersServiceProvider::class,
-
Publish views, css & jQuery files to your app:
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --force
Should you wish to publish to app
folder only selected resources, use these commands:
-
public assets (js, css)
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=publicassets --force
-
app files: Controllers, route files, Models
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=app --force
-
app files: View files
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=views --force
WARNING:
-
app files: View files to be copied to
resources/views/layouts/
folderphp artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=viewslayouts --force
-
migration files
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=migrations --force
-
seed files
php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=seeds --force
- Register the package in your User model and wherever you see it is necessary - see features section.
In your User
model:
`use Unrulynatives\Helpers\UserExtensions;
class User extends Authenticatable {
use UserExtensions;`
- Register trait in other models In your model file declare: `use Unrulynatives\Helpers\ModelExtensions;
class [your-model-name-goes-here] extends Authenticatable {
use ModelExtensions;`
- You need to register the routes defined in this package. Open
\app\Providers\RouteServiceProvider.php
and
- add
$this->mapUnstarterRoutes();
to themap()
function and - add the below code at the bottom of mapWebRoutes() fucntion:
protected function mapUnstarterRoutes()
{
Route::group([
'middleware' => 'web',
'namespace' => $this->namespace,
], function ($router) {
require base_path('unstarter/routes/unstarter.php');
});
}
Done!
Now you can check if the package works. Point your browser to unrulyhelpers
. You should see a clock - an example developed along Laraveldaily tutorial http://laraveldaily.com/how-to-create-a-laravel-5-package-in-10-easy-steps/
To do (Future features)
Example usage
- To get Gravatar assigned to authenticated user's e-mail use
<img src="{{Auth::user()->gravatar}}">