الفردوس كير ميديكال Al Fardous care medical

welcome to our aljannat website


Al Janat Investment and Real Estate Development are one of the largest real estate investment companies in Egypt. The company has a unique expertise in the field of investment and real estate development. Al Jannat has a great experience in the field of residential projects such as Al-Fardous Compound, Al-Firdous is the first complex in Banha. Al-Firdous Park is characterized by the best architectural and construction designs, availability of many services (hypermarket, medical services, integrated medical center, mosque ...) Our company is distinguished by other Egyptian real estate investment companies in quality, commitment to execution and delivery of all its projects, continue with customer service now and ask about payment systems for our project.

Our Projects


Find Us


Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(): Only 0 of 300 bytes written, possibly out of free disk space ErrorException thrown with message "file_put_contents(): Only 0 of 300 bytes written, possibly out of free disk space" Stacktrace: #6 ErrorException in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #5 file_put_contents in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #4 Illuminate\Filesystem\Filesystem:put in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #3 Illuminate\Session\FileSessionHandler:write in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Session/Store.php:262 #2 Illuminate\Session\Store:save in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:88 #1 Illuminate\Session\Middleware\StartSession:terminate in /home/aljannat/aljannat.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:155 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/aljannat/public_html/index.php:58
Stack frames (7)
6
ErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
111
5
file_put_contents
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
111
4
Illuminate
\
Filesystem
\
Filesystem
put
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
FileSessionHandler.php
83
3
Illuminate
\
Session
\
FileSessionHandler
write
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
262
2
Illuminate
\
Session
\
Store
save
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
88
1
Illuminate
\
Session
\
Middleware
\
StartSession
terminate
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
155
0
Illuminate
\
Foundation
\
Http
\
Kernel
terminate
/
home
/
aljannat
/
public_html
/
index.php
58
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
     *
     * @param  string  $file
     * @return mixed
     */
    public function requireOnce($file)
    {
        require_once $file;
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "file_put_contents(): Only 0 of 300 bytes written, possibly out of free disk space"
    
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Filesystem
/
Filesystem.php
     *
     * @param  string  $file
     * @return mixed
     */
    public function requireOnce($file)
    {
        require_once $file;
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "/home/aljannat/aljannat.com/storage/framework/sessions/35ec9774d08c409da3abf0f71f354aa617cf4c53"
    
  2. "a:5:{s:6:"_token";s:40:"xun9j0Ycdc0Sf6pa9Yw4IEIAnu5hdtyqHMTQctvk";s:4:"site";a:1:{s:6:"locale";s:2:"en";}s:9:"_previous";a:1:{s:3:"url";s:24:"https://al-jannat.com/en";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1764117820;s:1:"c";i:1764117820;s:1:"l";s:1:"0";}s:5:"flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->exists($path = $this->path.'/'.$sessionId)) {
            if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->get($path);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
                    ->in($this->path)
                    ->files()
                    ->ignoreDotFiles(true)
                    ->date('<= now - '.$lifetime.' seconds');
Arguments
  1. "/home/aljannat/aljannat.com/storage/framework/sessions/35ec9774d08c409da3abf0f71f354aa617cf4c53"
    
  2. "a:5:{s:6:"_token";s:40:"xun9j0Ycdc0Sf6pa9Yw4IEIAnu5hdtyqHMTQctvk";s:4:"site";a:1:{s:6:"locale";s:2:"en";}s:9:"_previous";a:1:{s:3:"url";s:24:"https://al-jannat.com/en";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1764117820;s:1:"c";i:1764117820;s:1:"l";s:1:"0";}s:5:"flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
     * Generate a new session identifier.
     *
     * @param  bool  $destroy
     * @return bool
     */
    public function regenerate($destroy = false)
    {
        return $this->migrate($destroy);
    }
 
    /**
     * {@inheritdoc}
     */
    public function save()
    {
        $this->addBagDataToSession();
 
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(serialize($this->attributes)));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Merge all of the bag data into the session.
     *
     * @return void
     */
Arguments
  1. "35ec9774d08c409da3abf0f71f354aa617cf4c53"
    
  2. "a:5:{s:6:"_token";s:40:"xun9j0Ycdc0Sf6pa9Yw4IEIAnu5hdtyqHMTQctvk";s:4:"site";a:1:{s:6:"locale";s:2:"en";}s:9:"_previous";a:1:{s:3:"url";s:24:"https://al-jannat.com/en";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1764117820;s:1:"c";i:1764117820;s:1:"l";s:1:"0";}s:5:"flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Middleware
/
StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Session\SessionInterface
     */
    protected function startSession(Request $request)
    {
        $session = $this->getSession($request);
 
        $session->setRequestOnHandler($request);
 
        $session->start();
 
        return $session;
    }
 
/
home
/
aljannat
/
aljannat.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Kernel.php
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddlewares($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            list($name, $parameters) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
 
        $this->app->terminate();
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddlewares($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddlewares($route);
        }
 
        return [];
    }
Arguments
  1. Request {}
    
  2. Response {}
    
/
home
/
aljannat
/
public_html
/
index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Request {}
    
  2. Response {}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"al-jannat.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/aljannat/public_html"
REMOTE_ADDR
"216.73.216.113"
REMOTE_PORT
"44715"
SERVER_ADDR
"167.86.90.203"
SERVER_NAME
"al-jannat.com"
SERVER_ADMIN
"webmaster@al-jannat.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/en"
REDIRECT_URL
"/en"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/aljannat/public_html/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://al-jannat.com/en"
SCRIPT_URL
"/en"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1764117820.1322
REQUEST_TIME
1764117820
argv
[]
argc
0
APP_ENV
"local"
APP_KEY
"base64:t2b6BaS8N9gYXJiak+2ZE3muXC/5Fdz6+Y6XER/mHu4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://al-jannat.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"aljannat_zj1riavm_l5"
DB_USERNAME
"aljannat_alvcuser32"
DB_PASSWORD
"b85y<.2VdZ?,"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_HOST
"mail.al-jannat.com"
MAIL_PORT
"465"
MAIL_USERNAME
"no-reply@al-jannat.com"
MAIL_PASSWORD
"zqPhwXk(gi^1"
MAIL_ENCRYPTION
"ssl"
Key Value
APP_ENV
"local"
APP_KEY
"base64:t2b6BaS8N9gYXJiak+2ZE3muXC/5Fdz6+Y6XER/mHu4="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://al-jannat.com"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"aljannat_zj1riavm_l5"
DB_USERNAME
"aljannat_alvcuser32"
DB_PASSWORD
"b85y<.2VdZ?,"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_HOST
"mail.al-jannat.com"
MAIL_PORT
"465"
MAIL_USERNAME
"no-reply@al-jannat.com"
MAIL_PASSWORD
"zqPhwXk(gi^1"
MAIL_ENCRYPTION
"ssl"
0. Whoops\Handler\PrettyPageHandler