You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678910111213141516 | <?php
namespace App\Filament\Company\Clusters\Settings\Resources\DiscountResource\Pages;
use App\Filament\Company\Clusters\Settings\Resources\DiscountResource;
use Filament\Resources\Pages\CreateRecord;
class CreateDiscount extends CreateRecord
{
    protected static string $resource = DiscountResource::class;
    protected function getRedirectUrl(): string
    {
        return $this->getResource()::getUrl('index');
    }
}
 |