make branches work

This commit is contained in:
2023-11-23 15:50:28 +05:00
parent 7372435e56
commit 143e2af1de
12 changed files with 909 additions and 2 deletions

View File

@@ -8,6 +8,8 @@ use App\Repos\System\Settings\Location\RegionRepo;
use Illuminate\Http\Request;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\Textarea;
use Laravel\Nova\Http\Requests\NovaRequest;
use Laravel\Nova\Resource;
@@ -86,7 +88,7 @@ class Branch extends Resource
Text::make(__('Billing password'), 'billing_password')
->rules('nullable', 'string', 'max:255'),
Textare::make('address', 'address'),
Textarea::make(__('Address'), 'address'),
];
}