1. Go to this page and download the library: Download madnh/laravel-model-labels 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/ */
madnh / laravel-model-labels example snippets
use MaDnh\LaravelModelLabels\LabelsTrait;
class Country extends Model
{
use SoftDeletes, LabelFieldTrait;
//Model contents...
public static $label_path = 'flag'; //Default is model_flag
public static $labels = [
'id' => 'ID',
'full_name' => 'Họ và tên'
];
public static $labels_trans_map = ['id' => 'ID']; //Auto convert label is Id
class Country extends Model
{
use SoftDeletes, LabelFieldTrait;
//...
public static $labels = [
'name' => 'Name of country',
'flag' => function($field){
return 'Flag ('.$field.')';
}];
//...
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use App\Models\Country;
class CreateCountryRequest extends FormRequest
{
public function rules()
{
return [
'name' => '
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.