first upload all files
This commit is contained in:
32
Modules/Currency/Admin/CurrencyRateTable.php
Normal file
32
Modules/Currency/Admin/CurrencyRateTable.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Currency\Admin;
|
||||
|
||||
use Modules\Currency\Currency;
|
||||
use Modules\Admin\Ui\AdminTable;
|
||||
|
||||
class CurrencyRateTable extends AdminTable
|
||||
{
|
||||
/**
|
||||
* Raw columns that will not be escaped.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $rawColumns = ['rate', 'updated_at'];
|
||||
|
||||
/**
|
||||
* Make table response for the resource.
|
||||
*
|
||||
* @return \Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function make()
|
||||
{
|
||||
return $this->newTable()
|
||||
->editColumn('currency_name', function ($currencyRate) {
|
||||
return Currency::name($currencyRate->currency);
|
||||
})
|
||||
->editColumn('updated_at', function ($currencyRate) {
|
||||
return view('admin::partials.table.date')->with('date', $currencyRate->updated_at);
|
||||
});
|
||||
}
|
||||
}
|
||||
31
Modules/Currency/Admin/CurrencyRateTabs.php
Normal file
31
Modules/Currency/Admin/CurrencyRateTabs.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Currency\Admin;
|
||||
|
||||
use Modules\Admin\Ui\Tab;
|
||||
use Modules\Admin\Ui\Tabs;
|
||||
|
||||
class CurrencyRateTabs extends Tabs
|
||||
{
|
||||
/**
|
||||
* Make new tabs with groups.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function make()
|
||||
{
|
||||
$this->group('currency_rate_information', trans('currency::currency_rates.tabs.group.currency_rate_information'))
|
||||
->active()
|
||||
->add($this->general());
|
||||
}
|
||||
|
||||
private function general()
|
||||
{
|
||||
return tap(new Tab('general', trans('currency::currency_rates.tabs.general')), function (Tab $tab) {
|
||||
$tab->active();
|
||||
$tab->weight(5);
|
||||
$tab->fields(['rate']);
|
||||
$tab->view('currency::admin.currency_rates.tabs.general');
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user