Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Releases: cleaniquecoders/laravel-boilerplate

Tabler

15 May 16:07
48be3ad
Compare
Choose a tag to compare

Migrate UI to use Tabler - https://tabler.github.io/

API Endpoints

27 Apr 07:20
805c9a4
Compare
Choose a tag to compare

In this release,

  1. Removed Laravel Passport, as it is not necessity to have OAuth provider in this boilerplate. It is too much.
  2. Added JWT Auth, common API endpoints - login, logout, register, forgot password and profile.

User Management

26 Apr 05:27
6f4df63
Compare
Choose a tag to compare

User Management has been include in this release.

Enhancements

16 Feb 10:23
Compare
Choose a tag to compare
  • Add 2 admin layouts - default & minimalist
  • Update navigation
  • Added Cancel Button
  • Added Password
  • Update user's name
  • Added User Profile Page.
  • Update navbar, layouts, added tooltip.
  • Added FontAwesome
  • Added Breadcrumbs
  • Added Balloon CSS, Removed old SweetAlert
  • Update .env
  • Added Breadcrumb Package
  • Fixed APP_URL not load properly
  • Update landing page test case
  • Added reload:all command
  • Replace Uxweb SweetAlert with Softon SweetAlert
  • Remove Logging Login Failed access
  • Apply PHP CS Fixer
  • Refactor Test
  • Update APP_URL
  • Added Pretty Printer and Predis
  • Added BBP Configuration File
  • Added Dusk Config Files
  • Added PHP CS Fixer Configuration

Upgrade to Laravel 5.6

08 Feb 22:53
Compare
Choose a tag to compare

Upgrade to Laravel 5.6.

Other than that, following are some other changes:

  • Added Font Awesome 5 - you need to use `{{ asset('js/font-awesome.js') }}
  • Remove Sempro PHPUnit Pretty Printer - Incompatible with PHPUnit 7
  • .travis.yml added APP_ENV to testing
  • Auth scaffold use Bootstrap 4 from Laravel 5.6 instead of build our own.

Fixed Register Link

06 Feb 07:25
Compare
Choose a tag to compare
v2.0.3

FIxed register link

UI

06 Feb 07:10
Compare
Choose a tag to compare
UI
  • Restructure welcome page
  • Restructure admin page

Fixed Test Setup

04 Feb 04:41
Compare
Choose a tag to compare
v2.0.1

Merge branch 'develop'

Restructure Laravel Boileplate

04 Feb 03:53
Compare
Choose a tag to compare
v2.0.0

Merge branch 'develop'

Polymorph for Address, Phone and E-mails

24 Dec 08:54
b08cdd0
Compare
Choose a tag to compare

Usage

In case you have a model Company, so do you want to use the morph - simply a company has addresses, phone numbers and emails - you can use HasProfile trait.

<?php

namespace OSI\Models;

use OSI\Traits\HasProfile;
use Illuminate\Database\Eloquent\Model;

class Company extends Model
{
    use HasProfile;

    protected $guarded = ['id'];

    /**
     * Create Slug From
     * @var array
     */
    protected $slug_from = ['name'];
}

The UI for this Morph, is up to you how to implement it - either using VueJs or Blade, it's up to you. Contribution much appreciated.