"Updated adminheader component to accept title parameter and passed title from various dashboard views |SEO optimized title|"

This commit is contained in:
UronShrestha
2024-07-16 14:04:16 +05:45
parent 7670867b62
commit 13db542a7b
7 changed files with 9 additions and 7 deletions

View File

@ -11,9 +11,11 @@ class adminheader extends Component
/**
* Create a new component instance.
*/
public function __construct()
public $title;
public function __construct($title)
{
//
$this->title = $title;
}
/**